-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
30 lines (30 loc) · 1.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML>
<html>
<head>
<title>eyangch Problemset</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { fonts: ["TeX"] }
});
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/javascript" src="https://blueimp.github.io/JavaScript-MD5/js/md5.js"></script>
</head>
<body>
<div class="container" style="border: 2px solid; line-height: 1.2">
<p></p>
<h1>Some problems I have made I guess</h1>
<p></p>
<p><a href="scarybulls.html">Scary Bulls (Estimated Difficulty: USACO Silver/CF 1600)</a></p>
<p><a href="pathconstruction.html">Path Construction (Estimated Difficulty: USACO Gold/CF 2100)</a></p>
</div>
</body>
</html>