-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
<link rel="stylesheet" href="./css/main-style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>COVID-19 Vaccine Data in Ontario</h1>
<p>Assignment #2 | Name | ID </p>
</div>
<div class="main">
<div class="buttons">
<button id="load-locastorage-btn" class="btn">Load LocalStorage</button>
<button id="display-list-btn" class="btn">Display List</button>
</div>
<h2>Summary of Total Vaccine Doses Administered in Ontario.</h2>
<ul id="records-list"></ul>
</div>
<div class="detail">
<h2>Vaccine Doses Detail Information</h2>
<div id="record-details"></div>
</div>
<div class="footer">
Footer content
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"></script>
<script src="./js/CovidRecord.js"></script>
<script src="./js/main-script.js"></script>
</body>
</html>