-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- styles -->
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Nothing+You+Could+Do" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<!-- javascripts -->
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<script src="jquery.mobile.custom.min.js"></script>
<script src="main.js"></script>
<title>Hangman</title>
</head>
<body>
<div id="title">
<h1>Hangman</h1>
</div>
<div id="categoryBox">
Category:
<select id="categories">
<!-- fill this proceedurally - simplifies editing.
see main.js.populateCategories -->
</select>
</div>
<div id="panel1">
<div id="hangmanWindow">
<img src="images/hangman0.png" id="hangman" height="100%" tabindex="-1" alt="">
</div>
<div id="discards" class="noSelect">
<!-- show wrong guesses here -->
</div>
</div>
<div id="gameWindow">
<!-- hangman image here -->
<div id="panel2">
<div id="wordWindow" class="noSelect">
<!-- boxes for letters will go here -->
</div>
</div>
<div id="panel3">
<div id="letterButtonWindow" class="noSelect">
</div>
</div>
</div>
</body>
</html>