-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththis_site.html
41 lines (40 loc) · 1.54 KB
/
this_site.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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Matthew Finlayson's personal website.">
<title>Matt Fin</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="style/main.css">
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<div id=sidebar>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="posts.html">Posts</a></li>
</ul>
</nav>
</div>
<main>
<h1 id="making-this-site">Making this site</h1>
<p>I have spent a good amount of time thinking about how my site looks. There are a few guiding ideas.</p>
<ul>
<li>No javascript, except for MathJAX.</li>
<li>Only HTML and CSS that I edit directly.</li>
<li>Make it pretty.</li>
<li>Make it responsive.</li>
<li>Leave defaults.</li>
<li>Don't over-organize.</li>
</ul>
<p>
<p>“Leave defaults” and “make it pretty” conflict from time to time. For instance, adding margins and limiting text width.</p>
</p>
</main>
</body>
</html>