forked from TheGood/ice-cream-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 952 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ice Cream Flavors - Jonathan Brockman</title>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<link href="./lib/css/style.css" rel="stylesheet" type="text/css" />
<!-- <script src="./lib/jquery-3.3.1.min.js"></script> -->
<script>
window.iceCreamFlavors = [
'vanilla',
'chocolate',
'Cherry Garcia',
'Neopolitan',
'French vanilla',
'bubble gum',
'butter pecan'
];
</script>
</head>
<body>
<ul class="ice-cream-list">
</ul>
<script src="./solutions/solution1.js"></script>
<script src="./solutions/solution2.js"></script>
<script src="./solutions/solution3.js"></script>
<script src="./solutions/solution4.js"></script>
<script src="./solutions/solution-conductor.js"></script>
</body>
</html>