-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<!-- CSS Reset -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<!-- Milligram CSS -->
<link rel="stylesheet" href="milligram/dist/milligram.css">
<!-- Other Styles -->
<link rel="stylesheet" href="style.css">
<title>HTML / CSS / JS Guessing Game</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="guessingGame.js" async></script>
</head>
<body>
<section class="primary">
<h1>Hey girl hey!<br>
I've generated a number <br>
between 1 and 100. <br>
Take a guess:</h1>
<br>
<div class="gameStatus">
<p class="guesses-remaining">You've got 5 guesses left!</p>
<div class="hints">
<p>Maybe you should try one of these numbers: </p>
</div>
<div class="guessGuidance"></div>
<br>
</div>
<section class="form">
<input id="visitor-guess" type="number" placeholder="Enter a number between 1 - 100">
<section id="buttons-container">
<button class="amirite">Amirite?</button>
<button class="button button-outline helpme">Help!</button>
<button class="startova">Start ova!</button>
</section>
</section>
</section>
</body>
</html>