blob: 5c3a308cff7d89202541f1585104d9a34a96021e (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Alexander Jin-Scheltgen</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<script>
// By Oskar Wickström
// Licensed under the MIT License (https://github.com/owickstrom/the-proportional-web/blob/main/LICENSE.md)
window.addEventListener("load", () => {
const asides = [...document.querySelectorAll("aside")];
asides.forEach((aside, i) => {
const anchor = aside.previousElementSibling;
const name = `--paragraph-before-aside-${i}`;
anchor.style.anchorName = name;
aside.style.positionAnchor = name;
});
});
</script>
<link rel="icon" href="favicon.ico">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="now.html">Now</a>
<a href="resume.html">Resume</a>
<a href="contact.html">Contact</a>
</nav>
<main class="blog">
<h1>Alexander Jin-Scheltgen</h1>
<p>about</p>
</main>
<footer class="blog-footer">
<p>Return to <a href="#top">top?</a></p>
<a href="https://ajinsche.com">https://ajinsche.com</a>
</footer>
</body>
</html>
|