-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwriting.html
More file actions
60 lines (60 loc) · 2.82 KB
/
writing.html
File metadata and controls
60 lines (60 loc) · 2.82 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
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sam Simmons</title>
<link rel="stylesheet" href="style.css">
</head>
<body class = "pattern">
<header>
<h1><a href="/">Sam</a></h1>
</header>
<div class = content id="writing-content">
<h2>Writing</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<a class="card" href="/writing.html#the-long-death">
<h3>The Long Death</h3>
<img src="images/IMG_6147.png" alt="A road sign partially buried in leaves reading 'End'">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</a>
<a class="card" href="/writing.html#prereflections">
<h3>An 18 year old's reflection of their 20s</h3>
<img src="images/IMG_7602.png" alt="A road sign on pavement with a depiction of a person running">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</a>
<a class="card" href="/writing.html#untitled-hook">
<h3>Hell on Both Sides</h3>
<img src="images/IMG_4123.png" alt="A very small sand dune close up">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</a>
<a class="card" href="/academic-writing.html">
<h3>Academic Works</h3>
<img src="images/IMG_1613.JPG" alt="A polaroid of a friend and I doing work on computers in high school">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</a>
</div>
<script src="writing.js"></script>
<script>
window.addEventListener('load', function() {
loadWritingFromURL();
});
window.addEventListener('hashchange', function() {
loadWritingFromURL();
});
</script>
</body>
</html>