-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Mako" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="app" class="container center">
<header id="headers">
<!-- Title and subtitles! -->
<h1 id="title">Play the Guessing Game</h1>
<h3 id="subtitle">Guess a number between 1-100!</h3>
<h2 id="directions">You get to have 1 hint.</h2>
</header>
<section id="main">
<div id="input-parent">
<!-- Player's guess input, and submit button -->
<input id="player-input" class="form-control center" placeholder="#" maxlength="3" autofocus>
<button id="submit" class="btn btn-success">Go!</button>
</div>
<div id="guesses">
<!-- unordered list of guesses -->
<ul id="guess-list">
<li class="guess">-</li>
<li class="guess">-</li>
<li class="guess">-</li>
<li class="guess">-</li>
<li class="guess">-</li>
</ul>
</div>
<div id="menu-btns">
<!-- reset and hint buttons -->
<button id="reset" class="btn btn-warning">Reset</button>
<button id="hint" class="btn btn-info">Hint</button>
</div>
</div>
</section>
<footer id="footer" class="center">
<div class="row">
<figure id="fs-logo" class="col-xs-4">
<img src="images/fsa-logo.png" alt="Fullstack Academy logo"></img>
</figure>
<div id="credit-block" class="col-xs-4">
<h4 id="credit">Project by BURCU NOYAN</h4>
</div>
<figure id="gh-logo" class="col-xs-4 logo">
<img src="images/gh-logo.png" alt="Grace Hopper Academy logo"></img>
</figure>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="./js/GuessingGame.js"></script>
</body>
</html>