forked from LaunchCode-Education-Archived/word-up
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (62 loc) · 2.39 KB
/
index.html
File metadata and controls
79 lines (62 loc) · 2.39 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Word Up!</title>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-2.2.3.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="sha384-2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous">
<!-- our CSS -->
<link rel="stylesheet" href="css/styles.css"/>
</head>
<body>
<h1 class="jumbotron">Word Up!</h1>
<main>
<!--
a section for things that should always be showing,
even if the game has not yet started -->
<section id="pregame">
<!--
A "scoreboard" to display the user's current score
and the time remaining -->
<div id="scoreboard" class="row">
<div class="col-xs-6">
<h6>Time Remaining</h6>
<h1 class="scoreboard-data" id="time-remaining"></h1>
</div>
<div class="col-xs-6">
<h6>Score</h6>
<h1 class="scoreboard-data" id="current-score"></h1>
</div>
</div>
<!-- TODO 1
Make a "New Game" button
-->
</section>
<!-- things that should not show up until the (first) game has started -->
<section id="game">
<!-- TODO 4
Add some instructions so the user knows what to do.
-->
<!-- TODO 5
Make an empty container to hold the letter chips.
Give it an id of "allowed-letters".
-->
<!-- the form via which the user attempts to submit new words -->
<form id="word-attempt-form">
<!-- the actual text box where the user types -->
<input type="text" id="textbox"/>
<br>
<!-- red feedback chips will be injected here -->
</form>
<!-- a container to display the user's word submissions -->
<div id="word-submissions">
<!-- word submission chips will be injected here -->
</div>
</section>
</main>
<!-- our script -->
<script src="scripts/wordup.js"></script>
</body>