-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Day of page for CUhackit's HelloWorld">
<meta name="author" content="Charlie Gallentine">
<!-- Tab title and icon -->
<title>CUhackit</title>
<link rel="stylesheet" href="./css/main.css">
<!-- <link rel="icon" href="resources/RGB_logo_bug.png">
--> <!-- New font! -->
<link rel="stylesheet" href="https://webfonts.fontstand.com/WF-024682-e892056c2f2d30507bf3290339937e35.css" type="text/css">
<!-- Custom styles -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="memo" class="section">
<!--Javascript will fill this with applicable objects-->
</div>
<!-- </div> -->
<div id="clockContainer" class="section">
<canvas id="clock" width="500px" height="150px"></canvas>
</div>
<div id="schedule_container">
<div class="schedule_block">
<div id="events" class="section_events">
<!--Javascript will fill this with applicable objects-->
</div>
<div id="upcoming_events" class="section_events">
<!--Javascript will fill this with applicable objects-->
</div>
</div>
<div class="schedule_block">
<div id="sessions" class="section_events">
<!--Javascript will fill this with applicable objects-->
</div>
<div id="upcoming_sessions" class="section_events">
<!--Javascript will fill this with applicable objects-->
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="./js/schedule.js"></script>
<script src="./js/sessions.js"></script>
<script src="./js/clock.js"></script>
<script src="./js/main.js"></script>
</body>
</html>