-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (40 loc) · 1.6 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>
<head>
<title>Bus Mall</title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<img id="bus-mall" src="img/busmall_white.png">
<h1>Bus Mall</h1>
<img id="bus-mirror" src="img/busmirror_white.png">
</header>
<nav class="flex-container">
<div id="newUserButton"></div>
<h2>Welcome! And thank you for participating in our product survey.<br>
Please Click on the product you are most likely to buy.</h2>
<div id="marketerButton"></div>
</nav>
<section id="replace">
<div id="image-container" class="fade"></div>
<div id="place"></div>
<div id="resultsMessage"></div>
<div class="flex-container" id="userButtons">
<div id="columnButton"></div>
<div id="pieButton"></div>
</div>
<div id="chart-container" class="fade"></div>
</section>
<script type="text/javascript" src="js/canvasjs.min.js"></script>
<script type="text/javascript" src="js/miscfunctions.js"></script>
<script type="text/javascript" src="js/stackedColumn100.js"></script>
<script type="text/javascript" src="js/columnGraph.js"></script>
<script type="text/javascript" src="js/pie.js"></script>
<script type="text/javascript" src="js/newuser.js"></script>
<script type="text/javascript" src="js/fifteenvotes.js"></script>
<script type="text/javascript" src="js/imageClick.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>