-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BusMall</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/grid.css">
<link rel="stylesheet" href="style/main-style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500&family=Kanit:wght@700&family=Orbitron:wght@500;900&family=Oswald:wght@600&family=Source+Sans+Pro:wght@200&family=Yellowtail&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<h1>BusMall</h1>
<a><img src="assets/BusMall Logo.png" alt="logo" id="Logo"></a>
</nav>
<div class= "hr1">
<hr>
</div>
<div class= "hr2">
<hr>
</div>
<main>
<div class="grid-container">
<div class= "h2">
<h2>Vote for the Best Product</h2>
</div>
<div class= "item three-images">
<section id="all_images">
<div class= "colorred">
<ul>
<li><img class="red" src="assets/boots.jpg" alt="boots" id="first_product_image"></li>
</ul>
</div>
<div class= "coloryellow">
<ul>
<li><img class= "yellow" src="assets/bag.jpg" alt="bag" id="second_product_image"></li>
</ul>
</div>
<div class= "colorgreen">
<ul>
<li><img class= "green" src="assets/banana.jpg" alt="banana" id="third_product_image"></li>
</ul>
</div>
</section>
</div>
<div class= "item tabulator">
<section id="Vote-Tabulator">
<p class="counter">Votes Left:<span id="votes-counter">25</span></p>
</section>
<ul id="product-clicks"></ul>
</div>
<div class="item chart">
<div class="myChart">
<canvas id="myChart"></canvas>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="app.js" async defer></script>
</body>
</html>