-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.74 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.74 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
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BusMall Product Testing</title>
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<header>
<h1 class="headerText">Welcome to the BusMall Product Test Page!</h1>
<h3 id="intro" class="headerText">Thank you for taking the time to complete our survey. </br> No wrong answers here, we promise!</h3>
<h4 id="instructions" class="headerText">On the page below you will see <b>3 </b> products displayed.</br> Please choose your favorite and click on it each time the images refresh! </h4>
</header>
<main>
<section id="imageContainer" class="images">
<div id="leftImage" class="productImage"></div>
<div id="middleImage" class="productImage"></div>
<div id="rightImage" class="productImage"></div>
</section>
<section class="buttons">
<div id="getResultsButton" class="button"></div>
<div id="resetButton" class="button"></div>
</section>
<section class="list">
<div id="trackerList"></div>
</section>
<section id="chart">
</section>
<section id="doughnutChart">
</section>
</main>
<footer>
<h5 class="footerText">© BusMall Industries · 2016</h5>
<div id="clearStorageButton" class="button"></div>
<div id="marketingData" class="button"></div>
</footer>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.js" integrity="sha256-matqc7CRptNWuATphiL4aVwn2YFBle16YV/AI5bYc70=" crossorigin="anonymous"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>