-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (79 loc) · 2.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
<html>
<head>
<title>New Tab</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="top_space"><br></div>
<table>
<tr>
<td>
<span id="clockbox"></span>
</td>
<td>
<a href="https://github.com/Kyle-Wolfe">
<img src="icons/github.png"/>
</a>
</td>
</tr>
</table>
<h1>
<a href="http://kyle-wolfe.com">Kyle Wolfe</a>
</h1>
<table>
<tr>
<td><a href="https://mail.google.com/mail/u/[email protected]">
<img src="icons/inbox.png"/>
</a></td>
<td><a href="https://grvl.ecpi.net/">
<img src="icons/ecpi.png"/>
</a></td>
<td><a href="https://smile.amazon.com/">
<img src="icons/amazon.png">
</a></td>
<td><a href="http://plex.kyle-wolfe.com">
<img src="icons/plex.png">
</a></td>
<td><a href="https://discordapp.com/channels/@me">
<img src="icons/discord.png">
</a></td>
</tr>
<tr>
<td><a href="https://mail.google.com/mail/u/[email protected]">
<img src="icons/gmail.png"/>
</a></td>
<td><a href="https://ecpi.instructure.com/">
<img src="icons/canvas.png"/>
</a></td>
<td><a href="https://portal.ecpi.edu/">
<img src="icons/ecpi.png">
</a></td>
<td><a href="https://www.youtube.com/">
<img src="icons/youtube.png">
</a></td>
<td><a href="https://www.reddit.com/r/Dashboard/#dashboardContents">
<img src="icons/reddit.png">
</a></td>
</tr>
</table>
</body>
</html>
<script type="text/javascript">
function GetClock(){
var day=new Date();
var hour=day.getHours();
var min=day.getMinutes();
if(hour==0){hour=12;}
else if(hour>12){hour-=12;}
if(hour<=9) hour="0"+hour;
if(min<=9) min="0"+min;
document.getElementById('clockbox').innerHTML=""+hour+":"+min+"";
}
window.onload=function(){
GetClock();
setInterval(GetClock,1000);
}
</script>