-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (41 loc) · 1.21 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
<!-- <script src="js/script.js"></script> -->
<html>
<head>
<script type="text/javascript" src="js/schedule.js"></script>
<title>Uncommon Hacks 2022 Dashboard</title>
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<img id= "dashboard_hacks_22" src="dashboard_hacks22_title.png" alt="Major League Hacking 2022 Hackathon Season" style="width:100%"></a>
<body>
<div id = "current_time_div">
Current Time:
<div id = "current_time">
</div>
</div>
<div id = "cur_event_time" class="time">
</div>
<div id = "cur_event_bar" class="bar">
</div>
<div id = "cur_title" class="title">
Current Event:
</div>
<div id="cur_event" class="description">
</div>
<div id="cur_event_location" class="location">
</div>
<div id = "next_event_time" class="time">
</div>
<div id = "next_event_bar" class="bar">
</div>
<div id = "next_title" class="title">
Next Event:
</div>
<div id="next_event" class="description">
</div>
<div id="next_event_location" class="location">
</div>
</body>
<script type="text/javascript" src="js/script.js"></script>
</html>