-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (56 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Startpage</title>
<meta name="description" content="Startpage">
<meta name="author" content="Matthew Bauer">
<link href="https://fonts.googleapis.com/css?family=Lato:300|Oxygen|Raleway" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/light-styles.css" title="default" />
<link rel="alternate stylesheet" type="text/css" href="css/dark-styles.css" title="alternate" />
<link rel="icon" href="favicon.ico">
<script type="text/javascript" src="js/themeswitch.js"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<nav class="nav-header">
<ul>
<li><a href="#dummy" tabindex="9">Social</a></li>
<li><a href="#dummy" tabindex="10">Work</a></li>
<li><a href="#dummy" tabindex="11">Tools</a></li>
<li><a href="#dummy" tabindex="12">Serials</a></li>
<li>
<div class="dropdown">
<a class="dropbtn">Themes</a>
<div class="dropdown-content">
<a href="#" onclick="setActiveStyleSheet('default'); return false;">Light</a>
<a href="#" onclick="setActiveStyleSheet('alternate'); return false;">Dark</a>
</div>
</div>
</li>
</ul>
</nav>
</header>
<div class="container-div">
<section class="middle-content">
<h1 class="time"></h1>
<input type="text" name="searchbox" placeholder="Duck Duck Go" class="search" tabindex="1">
<nav>
<ul class="websites">
<a href="https://mastodon.social/"><li class="mastodon" tabindex="2">Mastodon</li></a>
<a href="https://steemit.com/"><li class="steemit" tabindex="3">Steemit</li></a>
<a href="https://www.linkedin.com/in/matthewtbauer" tabindex="4"><li class="linkedin">LinkedIn</li></a>
<a href="https://protonmail.com/"><li class="protonmail" tabindex="5">Protonmail</li></a>
<a href="http://localhost:3000/"><li class="localhost" tabindex="6">Localhost</li></a>
<a href="http://www.github.com/sylk"><li class="github" tabindex="7">Github</li></a>
</ul>
</nav>
</section>
</div>
<script src="js/clock.js"></script>
<script src="js/search.js"></script>
</body>
</html>