forked from juliapohlmann/crackthesafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (45 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<title>Crack the Safe Game</title>
<!-- Link CSS here -->
<link type='text/css' rel='stylesheet' href='css/style.css' />
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Gaegu" rel="stylesheet">
</head>
<body>
<!-- TASK 1: In the div below.
1. In a header tag, add a title.
2. In a paragraph tag, add instructions on how to play the game.
3. Add an image.
4. Add 4 input boxes and button .
5. Add divs to record user choice.
6. Add a div to record correct number counts and winner
-->
<div class="row">
<h1>Crack the safe</h1>
<img src="https://us.123rf.com/450wm/coliap/coliap1110/coliap111001224/10888364-open-safe-with-gold-inside-isolated-on-white.jpg?ver=6">
<h3>Please Submit Your Choice Below</h3>
<div class="inputBoxes">
<input type="tel" maxlength="1" max="9" min="0" id="number1">
<input type="tel" maxlength="1" max="9" min="0" id="number2">
<input type="tel" maxlength="1" max="9" min="0" id="number3">
<input type="tel" maxlength="1" max="9" min="0" id="number4">
</div>
<div class="buttons">
<button id="verify">Verify!</button>
<div id="counter"></div>
</div>
<div>
<h4>User Choice</h4>
<p id="userChoice"></p>
<h4>Results</h4>
<div id="results_inplace"></div>
<div id="results_correct"></div>
</div>
</div>
<!-- Link JQuery here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Link script.js here -->
<script src='js/script.js'></script>
</body>
</html>