-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·94 lines (78 loc) · 2.96 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Meta Tags-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hang With Colors</title>
<!-- Bootstrap 4 CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- MD Bootstrap -->
<link rel="stylesheet" href="assets/css/mdb.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container-fluid pt-3">
<div class="row">
<header class="col-12 animated flipInY">
<!-- Banner Image-->
<img class="text-center animated flipInX" id="banner" src="assets/img/hang-with-colors-banner_vectorized.svg" alt="Hang With Colors Banner" />
</header>
</div>
<br>
<div class="row">
<hr>
<br><br><br><br>
<hr>
</div>
<!--Main Game Row-->
<div class="mb-0 row game-row animated flipInX">
<div class="col-1"></div>
<div class="col animated flipIn" id="color-block">
<!-- Block that Matches the current color-->
</div>
<div class="col-2"></div>
<div class="col game animated flipIn">
<div class="press-any animated">
<p>
Let's play Hangman!
<br> Press the Return key to begin!
</p>
</div>
<div id="wins" class="animated fadeInRight">
</div>
<div id="losses" class="animated bounceInRight">
</div>
<div id="current-word" class="animated zoomInLeft">
</div>
<div id="remaining-guesses" class="animated rotateInUpRight">
</div>
<div id="guessed-letters" class="animated flipInY">
</div>
</div>
<div class="col-1"></div>
</div>
<div class="row mt-0 animated tada">
<footer class="col animated flipIn text-center">
<span class="animated rotateInDownLeft">©2017 Omar Imam</span>
</footer>
</div>
</div>
<!-- jQuery -->
<script src="assets/js/jquery-3.1.1.min.js"></script>
<!-- Popper -->
<script src="assets/js/popper.min.js"></script>
<!-- Bootstrap Javascript -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- MDB Javascript -->
<script src="assets/js/mdb.min.js"></script>
<!-- Link to Javascript-->
<script src="assets/js/hangman.js"></script>
</body>
</html>