-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathindex.html
75 lines (68 loc) · 1.29 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
67
68
69
70
71
72
73
74
75
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="scripts.js"></script>
<script src="scripts_spec.js"></script>
<style>
h1,h2,h3,p{
text-align: center;
}
.output{
padding: 20px;
width: 300px;
margin: 20px auto;
border: 1px solid black;
}
</style>
</head>
<body>
<h1>
Javascript Sprint Test Suite
</h1>
<h3>
Largest Element:
</h3>
<div class="output" id="largest-el">
Pending...
</div>
<h3>
Reversed String:
</h3>
<div class="output" id="reversed">
Pending...
</div>
<h3>
Loud Snake Case:
</h3>
<div class="output" id="loud-snake-case">
Pending...
</div>
<h3>
Compare Arrays:
</h3>
<p>
<em>Note: The rest of the test suite depends on getting this right!</em>
</p>
<div class="output" id="compare-arrays">
Pending...
</div>
<h3>
Fizz Buzz:
</h3>
<div class="output" id="fizz-buzz">
Pending...
</div>
<h3>
My Map:
</h3>
<div class="output" id="my-map">
Pending...
</div>
<h3>
Primes:
</h3>
<div class="output" id="primes">
Pending...
</div>
</body>
</html>