-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 1.25 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,700" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Number Guesser
</title>
</head>
<body>
<header>
<h1>
<span id="number">Number</span><span id="guesser"> Guesser</span>
</h1>
</header>
<section>
<input id="main-input" placeholder="Enter your guess" type="number, text"/>
<button class="guess" disabled>
Guess
</button>
<button class="clear" disabled>
Clear
</button>
</section>
<section class="min-max-text">
</section>
<section class="your-last-guess-text">
<!-- <p>Your last guess was:</p> -->
</section>
<section class = "last-guess">
</section>
<section class = "response">
</section>
<section class = "reset-number">
<button class = "reset-button" disabled>
Reset
</button>
</section>
<input id="min-value" placeholder="Enter a min value" type="number"/>
<input id="max-value" placeholder="Enter a max value" type="number"/>
<button class="changeminmax" disabled>Submit</button>
<script type="text/javascript" src='javascript.js'>
</script>
</body>
</html>