-
Notifications
You must be signed in to change notification settings - Fork 332
/
index.html
54 lines (32 loc) · 1.35 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang = "en">
<head>
<link href = "media/fonts/consola.ttf" rel = "stylesheet" type = "application/octet-stream">
<link href = "media/images/favicon.ico" rel = "icon" type = "image/x-icon">
<link href = "modules/style/theme.css" rel = "stylesheet" type = "text/css">
<meta charset = "utf-8">
<meta name = "author" content = "Frank Poth">
<meta name = "color-scheme" content = "only light">
<meta name = "description" content = "This is Frank Poth's portfolio site. See his code projects!">
<meta name = "keywords" content = "Frank Poth">
<meta name = "robots" content = "follow,index">
<meta name = "theme-color" content = "#202830">
<meta name = "viewport" content = "height=device-height,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width">
<title>Frank Poth</title>
</head>
<body>
<header>
<div id = "header-logo">
<span id = "header-logo-text">frankpoth.info</span>
</div>
<nav id = "header-links">
<a style = "color:#0099ff">Hello!</a>
</nav>
</header>
<main id = "main"></main>
<footer>
<p id = "footer-note">This site is currently under construction.</p>
</footer>
<script src = "index.js"></script>
</body>
</html>