-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (38 loc) · 1.03 KB
/
about.html
File metadata and controls
43 lines (38 loc) · 1.03 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="assets/theme.css">
<link rel="stylesheet" href="assets/style.css">
</head>
<header class="site-header">
<nav class="site-nav" aria-label="Primary navigation">
<div class="links">
<a href="../index.html" class="nav-home">home</a>
<div>
<span class="nav-about current">about</span>
</div>
</div>
<div class="nav-search">
<form method="get" class="nav-search" role="search">
<label for="q" class="visually-hidden">Search</label>
<input
type="search"
id="q"
name="q"
placeholder="Search…"
autocomplete="off"
/>
</form>
</div>
</nav>
</header>
<body class="theme-dark">
<div id="center-content">
<div class="about-content">
Sometimes I want to write about things. So this is where I'm putting it! I hope some of it is interesting.
</div>
</div>
</body>
</html>