-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
39 lines (35 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guessing Game!</title>
<!-- Bootstrap -->
<link href="bootstrap.min.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="page-header">
<h1><a class = "pull-right" href = "http://www.fullstackacademy.com"><img id = 'fs-img' src="https://media.balsamiq.com/img/sponsorship/fullstackacademy.png"></a></h1>
<h1 class "pull-left">Guess the number! <small>and win a prize?</small></h1>
</header>
<div class="main-box">
<h3 id = "guess-count">Remaining Guesses: 5</h3>
<h5 id = "how-good"></h5>
<input type="text" class = "form-control input" placeholder="1-100">
<button type="button" class="btn btn-danger btn-lg">Submit Guess</button>
<div id = "guessed">
</div>
</div>
<div class="buttons center-block">
<button type="button" class="btn btn-primary start">Start a New Game</button>
<button type="button" class="btn btn-primary hint">Request Hint</button>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="guess.js"></script>
</div>
</body>
</html>