-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 2.28 KB
/
index.html
File metadata and controls
69 lines (61 loc) · 2.28 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
<!DOCTYPE html>
<html id="bg">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1 id="greeting"></h1>
<h1 id="date"></h1>
<div class="container">
<ol style="padding-left: 0px;">
<li>
<h3 class="containerTitle red">Social Media.</h3>
</li>
<div class="line red"></div>
<li class="item"><a href="https://facebook.com/">Facebook</a></li>
<li class="item"><a href="https://twitter.com/">Twitter</a></li>
<li class="item"><a href="https://reddit.com/">Reddit</a></li>
</ol>
</div>
<div class="container">
<ol>
<li>
<h3 class="containerTitle orange">Messaging.</h3>
</li>
<div class="line orange"></div>
<li class="item"><a href="https://messenger.com/">Messenger</a></li>
<li class="item"><a href="https://web.whatsapp.com/">WhatsApp</a></li>
<li class="item"><a href="https://gmail.com/">Gmail</a></li>
</ol>
</div>
<div class="container">
<ol>
<li>
<h3 class="containerTitle green">Developer.</h3>
</li>
<div class="line green"></div>
<li class="item"><a href="https://github.com/">Github</a></li>
<li class="item"><a href="https://freecodecamp.org/news">FCC News</a></li>
<li class="item"><a href="https://medium.com/">Medium</a></li>
<li class="item"><a href="https://stackoverflow.com/">Stack Overflow</a></li>
<li class="item"><a href="https://open.spotify.com/">Spotify Web</a></li>
</ol>
</div>
<div class="container">
<ol>
<li>
<h3 class="containerTitle blue">Routine.</h3>
</li>
<div class="line blue"></div>
<li class="item"><a href="https://theverge.com/">The Verge</a></li>
<li class="item"><a href="https://androidpolice.com/">Android Police</a></li>
<li class="item"><a href="https://screenrant.com/">Screenrant</a></li>
<li class="item"><a href="https://youtube.com/feed/subscriptions">YouTube</a></li>
<li class="item"><a href="https://app.destinyitemmanager.com/">DIM</a></li>
</ol>
</div>
<script type="text/javascript" src="js/background.js"></script>
<script type="text/javascript" src="js/site.js"></script>
</body>
</html>