-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (29 loc) · 834 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
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>What color are my eyes?</title>
<link href="main.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<div class="js-prompt">
<div>What color are my eyes?</div>
<br />
<div>
<button class="js-find-out-button">
Find Out What Color My Eyes Are
</button>
</div>
</div>
<div class="js-loading-indicator u-displayNone">
Calculating eye color...
</div>
<div class="js-result u-displayNone">
<div>Your eyes are <span style="color: green">hazel</span>.</div>
<br />
<button class="js-try-again">Try again!</button>
</div>
</body>
</html>