-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Number Guesser</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:700&text=Number ">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300">
<link rel="stylesheet" href="master.css">
</head>
<body>
<header>
<h1>Number <span id="titleGuesser">Guesser</span></h1>
</header>
<main>
<form class="" action="index.html" method="post">
<input type="text" id="guessField" value="" placeholder="Enter your guess" autocomplete = "off"/>
<br />
<input class="guesserButton" type="button" id="guessButton" value="Guess" title="Enter a number to Guess">
<input class="guesserButton" type="button" id="clearButton" value="Clear">
</form>
<section>
<p id="topText">Your last guess was</p>
<p id="lastGuess">--</p>
<p id="response">RESPONSE</p>
<p id="levelUp">PLACEHOLDER</p>
</section>
<input class="guesserButton" type="button" id="resetButton" value="Reset">
<script type="text/javascript" src="scripts.js"></script>
</main>
</body>
</html>