-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·83 lines (60 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE HTML>
<head>
<title>Home</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div id=body>
<h1 align="center" id="message" class="expandUp"></h1>
<script type="text/javascript">
var d = new Date();
var n = d.getHours();
if (n >= 22 || n <= 4){
message = "Goodnight";
} else if ( n >= 5 && n <= 11 ) {
message = "Good Morning";
} else if ( n >= 12 && n <= 17 ) {
message = "Good Afternoon";
} else if ( n >= 18 && n <= 21 ) {
message = "Good Evening";
}
document.getElementById("message").innerHTML = message;
</script>
<span>MEDIA </span>
<span class=links>
[ <a href="https://www.4chan.org/g/" target="_blank">Technology</a> /
<a href="https://www.reddit.com" target="_blank">Front Page</a> /
<a href="https://www.reddit.com/r/linuxmasterrace/" target="_blank">Linux</a> /
<a href="https://www.reddit.com/r/android/" target="_blank">Android</a> /
<a href="http://hckrnews.com/" target="_blank">HackerNews</a> ]
</span>
<br><br>
<span>ENTERTAINMENT </span>
<span class=links>
[ <a href="https://www.netflix.com/browse" target="_blank">Netflix and Chill</a> /
<a href="https://www.youtube.com/" target="_blank">YouTube and Yoga</a> /
<a href="https://play.pokemonshowdown.com/" target="_blank">Pokemon Showdown</a> /
<a href="http://www.totaljerkface.com/happy_wheels.tjf" target="_blank">Happy Wheels</a> ]
</span>
<br><br>
<span>SOCIAL </span>
<span class=links>
[ <a href='https://twitter.com/DankGoodMorning' target="_blank">Twitter</a> /
<a href='https://instagram.com' target="_blank">Instagram</a> /
<a href='https://plus.google.com/' target="_blank">Google+</a> /
<a href="https://photos.google.com/" target="_blank">Photos</a> ]
</span>
<br><br>
<span>WORK </span>
<span class=links>
[ <a href='https://github.com/kevinarefunny' target="_blank">GitHub</a> /
<a href="http://pastebin.com/" target="_blank">PasteBin</a> /
<a href="https://mail.google.com/mail/u/0/#inbox" target="_blank">Gmail</a> /
<a href="https://www.kernel.org/" target="_blank">Kernel</a> /
<a href="https://blackboard.irsc.edu/" target="_blank">School</a> ]
</span>
<br><br>
</div>
</body>
</html>