-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
58 lines (46 loc) · 1.92 KB
/
template.html
File metadata and controls
58 lines (46 loc) · 1.92 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<!-- I have no idea how to 'include' links and scripts from other files -->
<!-- If you know how to do it, please let me know -->
<meta charset="UTF-8">
<!-- Preconnect for Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Fonts -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/bitmaks/cm-web-fonts@latest/fonts.css">
<link href="https://fonts.googleapis.com/css2?family=Fondamento&display=swap" rel="stylesheet">
<!-- Syntax Highlighting -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<!-- Local .css -->
<link rel="stylesheet" href="styles.css">
<!-- LaTeX support -->
<script type="text/javascript" id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Template</title>
</head>
<body>
<div class="content">
<div class="nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
</div>
<div class="main-content">
<h1>Template</h1>
<!-- Thanks Liam, you absolute Legend https://stackoverflow.com/a/65971269 -->
<p>
$$\frac{d\mathcal D}{dt} = ∇ × \mathcal H$$
$$\frac{d\mathcal B}{dt} = -∇ × \mathcal E$$
$$∇ · \mathcal B =0$$
$$∇ · \mathcal D =0$$
</p>
<div class="footer">
<p>Creation Date: April 20th, 2025</p>
<p>Author: Leonardo Held</p>
</div>
</div>
</body>
</html>