-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.98 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
<!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://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/cover.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Document</title>
</head>
<body id="test">
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<!-- <h3 class="masthead-brand">Cover</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="#">Features</a>
<a class="nav-link" href="#">Contact</a>
</nav> -->
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Who's that pokemon!</h1>
<!-- where the content of the game is located -->
<div id="random"><p></p></div>
<div id="remain"><p>Number of guesses remaining: 9</p></div>
<p>Letters already guessed: </p>
<p id="wrong"></p>
<div id="wins"><p>Wins: </p></div>
<div id="lose"><p>Losses: </p></div>
<p class="lead">
<div onclick="resetGame()" class="btn btn-lg btn-secondary">Reset Game</div>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Cover template for <a href="https://getbootstrap.com/">Bootstrap</a>, by <a href="https://twitter.com/mdo">@mdo</a>.</p>
</div>
</footer>
</div>
<script type="text/javascript" src="assets/javascript/game.js"></script>
</body>
</html>