-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.5 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CoverPage</title>
<script>
window.MathJax = {
tex: {
inlineMath: [['$', '$']], // Explicitly include $...$
displayMath: [['$$', '$$']]
},
options: {
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre','code','annotation', 'annotation-xml'],
processEscapes: true
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="../unitCommonStyles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/default.min.css">
</head>
<body>
<div id="unit">
<p><b>NOTE: This page is yet to be developed</b></p> <!-- Remove this entire tag when starting to develop -->
<h2 id="unitName">CoverPage</h2>
<div id="unitBody">
<h3>a section</h3>
<p>Its contents</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/languages/Javascript.min.js"></script>
<script src="./script.js" type="module"></script>
</body>
</html>