-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchart.html
More file actions
39 lines (37 loc) · 1.23 KB
/
Copy pathchart.html
File metadata and controls
39 lines (37 loc) · 1.23 KB
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
<!doctype html>
<html>
<head>
<title>Code Partners 201: Coding Quiz</title>
<link href="main.css" type="text/css", rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
</head>
<body>
<nav>
<a href="home.html" class ="nav-item">
<div class="icon-wrapper">
<img src="svg/home.svg">
</div>
Home
</a>
<a href="index.html" class ="nav-item">
<div class="icon-wrapper icon-wrapper__2">
<img src="svg/quiz.svg">
</div>
Quiz
</a>
<a href="chart.html" class ="nav-item">
<div class="icon-wrapper icon-wrapper__3">
<img src="svg/results.svg">
</div>
Results
</a>
</nav>
<div id="chart" class="resultsCard">
<h1 class= "title">Quiz <span>Results</span></h1>
<canvas id="myChart">
</canvas>
</div>
</body>
<script src="main.js"></script>
<script src="chart.js"></script>
</html>