-
Notifications
You must be signed in to change notification settings - Fork 1
/
Numbers.html
35 lines (32 loc) · 988 Bytes
/
Numbers.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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M0SCB1X0YP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M0SCB1X0YP');
</script>
<link rel="icon" href="Images/ngs.png">
<title> Numbers! </title>
<link rel="stylesheet" href="Styles/numbers.css">
</head>
<body>
<div id="ContentPane" onload="Click()">
<center>
<p>Guess a number between 0 and 100 and I'll</br>
tell you if it is bigger or smaller than the number I guessed.</p><p id="GuessesBox">
You got 5 guesses</p></br>
<input id="TextBox" type="text">
<input id="Button" type="button" value="Guess" onclick="Click()">
</br>
<p id="ResultBox"></p>
</br>
<a href="index.html"><input id="Button" type="button" value="Back"></a>
</center>
</div>
</body>
<script src="Scripts/Numbers.js"></script>
</html>