-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (32 loc) · 882 Bytes
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css?family=Lora|Open+Sans&display=swap" rel="stylesheet">
<title>Strictly Explicit</title>
</head>
<body>
<header>
<div>
<H1>
<a href="./index.html">
Strictly Explicit
</a>
</H1>
<nav>
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
</nav>
</div>
</header>
<main>
<H1>About</H1>
<p>I'm Dmitriy Sorkin and i'm yet to come up with a real about page.</p>
<p>You can contact me via email: aikixd at gmail.</p>
</main>
<footer>
"Powered" by <a href="https://github.com/aikixd/PlainBlog">PlainBlog</a>
</footer>
</body>
</html>