-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
29 lines (29 loc) · 969 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<title>Number Guesser</title>
<style>
.playagain{
display:none;
}
</style>
</head>
<body>
<div class="container">
<h1>Number Guesser by Nishant</h1>
<h5>click <a href="https://github.com/nishant1596/number-guesser">here</a> for code</h5>
<div id="game">
<p>Guess a Number between <span class="min-num">1</span> and <span class="max-num">10</span></p>
<input type="number" placeholder="Enter your guess" id="guess-input">
<input type="submit" value="Submit" id="guess-btn">
<p class="message"></p>
</div>
<button class="playagain">Play Again</button>
</div>
<script src="app.js" ></script>
</body>
</html>