-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguessNumber.html
More file actions
53 lines (53 loc) · 2.76 KB
/
Copy pathguessNumber.html
File metadata and controls
53 lines (53 loc) · 2.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World Of Games</title>
<!--Bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!--TEMPLATED-->
<link rel="stylesheet" href="assets/css/TEMPLATED.css">
<!--Custom CSS-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="font-size">
<header>
<nav id="navigation">
<ul class="nav navbar-nav align-middle">
<li class="col-3"><a href="index.html">Home</a></li>
<li class="col-3"><a href="guessNumber.html" class="active">Guess the number</a></li>
<li class="col-3 memoryButton"><a href="memory.html">Memory</a></li>
<li class="col-3"><a href="highscoreTables.html">High scores</a></li>
</ul>
</nav>
</header>
<section class="heroGuess heroImage">
<div class="layer" id="guessPage">
<h1>Guess the number from 1 to 500</h1>
<p id="introductionGuess">Guess the secret number the computer is thinking off. <br> If your guess is too high or too low, you'll get a hint.</p>
<div class="inputSection">
<h3 id="instructions"></h3>
<div class="md-form">
<input type="number" class="form-control font-size" aria-label="User's guess" id="userGuess">
</div>
<button type="button" class="button fit" id="clickMe" value="clickme">Guess!</button>
</div>
</div>
</section>
<footer>
<ul class="icons">
<li><a target="_blank" href="https://twitter.com/explore" class="icon fa-twitter font-size"><span class="label">Twitter</span></a></li>
<li><a target="_blank" href="https://www.facebook.com/" class="icon fa-facebook font-size"><span class="label">Facebook</span></a></li>
</ul>
</footer>
<!--Jquery-->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<!--Font Awesome-->
<script src="https://kit.fontawesome.com/e10eaf955c.js" crossorigin="anonymous"></script>
<!--Guess the number-->
<script src="assets/js/guessNumberScript.js"></script>
<!--High score-->
<script src="assets/js/highScore.js"></script>
</body>
</html>