-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (23 loc) · 858 Bytes
/
index.html
File metadata and controls
42 lines (23 loc) · 858 Bytes
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Psychic Game</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="page-header">
<h1>The Psychic Game</h1>
</div>
<div id="game">
<p>Guess what letter I'm thinking of. Press any key to start playing!!!</p>
</div>
<div class="glyphicon glyphicon-star"></div>
<div class="glyphicon glyphicon-star"></div>
<div class="glyphicon glyphicon-star"></div>
</div>
<script type="text/javascript" src="assets/javascript/game.js"></script>
</body>
</html>