-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartB.html
45 lines (38 loc) · 1.49 KB
/
startB.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/common.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/themeStyleBlack.css" rel="stylesheet" type="text/css">
<title>Bulls and Cows</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
</head>
<body>
<div class="wrapper">
<a href="index.html" class="">
<img src="img/backBtn.png" class="theme back" alt="Black / White" max-width="65px" />
</a>
<a href="start.html" class="">
<img src="img/BW3_shadowDark.png" class="theme bull" alt="Black / White" max-width="65px"/>
</a>
<form class="userForm" action="">
<input class="classUserInput" type="tel" id="userInput" name="num" value="" maxlength="4">
<a class="check" onclick="getUserInput(), document.getElementById('userInput').value = ''">CHECK</a>
<!-- onchange="getUserInput()" -->
</form>
<div class="userSuggestions" id="answer"></div>
<div id="userGuess" class="userGuessIt"></div>
<div id="newGame"></div>
</div>
<!--end wrapper-->
</body>
<script type="text/javascript" src="js/scripts.js"></script>
<script>
(function () {
generateNumber();
})();
</script>
</html>