-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (100 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
126 lines (100 loc) · 2.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Start</title>
<!-- stylesheet -->
<link rel="stylesheet" type="text/css" href="stylesheets/site.css">
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300|Share+Tech+Mono:400,500|Raleway:500" rel="stylesheet">
</head>
<body>
<div class="content">
<!-- Time -->
<div id="Time" class="centered">
<time id="currentTime"></time>
<span id="currentDate"></span>
</div> <!-- end Time -->
<!-- Links -->
<div id="Links" class="centered">
<table class="centered">
<tr>
<td>
<div>
<h2 id="title1">Social</h2>
<ul>
<li><a href="https://reddit.com">reddit</a></li>
<li><a href="https://www.instagram.com/">instagram</a></li>
<li><a href="https://discordapp.com/">discord</a></li>
<li><a href="https://www.patreon.com/home">patreon</a></li>
</ul>
</div>
</td>
<td>
<div>
<h2 id="title2">CS</h2>
<ul>
<li><a href="http://www.sfsu.edu/">sfsu</a></li>
<li><a href="https://github.com/">github</a></li>
<li><a href="http://overthewire.org/wargames/">otw</a></li>
<li><a href="https://www.w3schools.com/">w3 schools</a></li>
</ul>
</div>
</td>
<td>
<div>
<h2 id="title3">Learning</h2>
<ul>
<li><a href="https://www.duolingo.com">duolingo</a></li>
<li><a href="https://www.codecademy.com">codecademy</a></li>
<li><a href="https://www.khanacademy.org">khan academy</a></li>
<li><a href="https://www.udemy.com/">udemy</a></li>
</ul>
</div>
</td>
</tr>
<tr>
<td>
<div>
<h2 id="title4">Entertainment</h2>
<ul>
<li><a href="https://www.youtube.com">youtube</a></li>
<li><a href="https://www.netflix.com">netflix</a></li>
<li><a href="https://www.criterion.com/">criterion</a></li>
</ul>
</div>
</td>
<td>
<div>
<h2 id="title5">Shopping</h2>
<ul>
<li><a href="https://sfbay.craigslist.org/">craigslist</a></li>
<li><a href="http://store.steampowered.com/">steam</a></li>
<li><a href="https://www.etsy.com/">etsy</a></li>
</ul>
</div>
</td>
<td>
<div>
<h2 id="title6">Other</h2>
<ul>
<li><a href="https://mail.google.com/mail/">gmail</a></li>
<li><a href="https://protonmail.com/">proton mail</a></li>
<li><a href="https://www.google.com/maps/">maps</a></li>
</ul>
</div>
</td>
</tr>
</table>
</div> <!-- end Links -->
<!-- Search -->
<div id="Search" class="centered">
<form action="https://www.duckduckgo.com/" method="get">
<input type="search" autocomplete="off" placeholder="search..." name="q" class="searchbox" autofocus>
<input type="submit" value="search" style="display:none; ">
</form>
</div> <!-- end Search -->
</div> <!-- end content -->
<script src="./js/script.js"></script>
</body>
</html>