summaryrefslogtreecommitdiff
path: root/monogram.html
diff options
context:
space:
mode:
authorj-james2022-01-17 08:12:45 +0000
committerj-james2022-01-17 08:12:45 +0000
commitdfec2098fb910551aded24cccb52d21d439f2f9b (patch)
treef325a947bea313234665813207dcf1a994a65ce1 /monogram.html
parent85e07045d341b834e6e6dc7873f639baf3ffd8bc (diff)
Prepend <!DOCTYPE html> to all pages
otherwise they're in "Quirks Mode", and who knows what issues that may cause
Diffstat (limited to 'monogram.html')
-rw-r--r--monogram.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/monogram.html b/monogram.html
new file mode 100644
index 0000000..7597a39
--- /dev/null
+++ b/monogram.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<head>
+ <title>j-james</title>
+ <meta charset="utf-8"/>
+ <meta name="viewport" content="width=device-width"/>
+ <link rel="icon" type="image/jpg" href="https://j-james.me/assets/compass.jpg"/>
+ <link rel="stylesheet" href="https://j-james.me/css/normalize.css"/>
+</head>
+<body>
+ <main style="font-family: 'Fira Code', monospace; width: 100%; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;">
+ <img src="assets/compass.jpg" style="width: 250px; height: auto; margin-bottom: 2.5em;"/>
+ <nav style="margin-bottom: 10em;">
+ <a href="https://j-james.me" style="color: black;">home</a>
+ ·
+ <a href="https://j-james.me/about" style="color: black;">about</a>
+ ·
+ <a href="https://j-james.me/resume" style="color: black;">resume</a>
+ ·
+ <a href="https://j-james.me/links" style="color: black;">links</a>
+ ·
+ <a href="https://j-james.me/bookshelf" style="color: black;">bookshelf</a>
+ </nav>
+ </main>
+</body>
+<!--
+ inspiration:
+ https://isaacfreund.com/
+ https://emersion.fr/
+-->