-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlayGame.html
71 lines (65 loc) · 1.99 KB
/
PlayGame.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
<!DOCTYPE html>
<head>
<title>Play Game!</title>
<link href="CSS/reset.css" rel="stylesheet">
<link href="CSS/stylesheet.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript" src="./JS/jquery.pietimer.js"></script>
<script type="text/javascript" src="./JS/numgent.js"></script>
<script type="text/javascript" src="./JS/convert.js"></script>
<script type="text/javascript" src="./JS/nextWord.js"></script>
<script type="text/javascript" src="./JS/game.js"></script>
<script type="text/javascript" src="./JS/endgame.js"></script>
</head>
<body>
<div id="wrapper">
<header>
<figure>
<a href = "index.html"><img src="logo.png" alt="Vowel Removements" width="320px"></a>
</figure>
<hr></hr>
</header>
<main>
<div id="timer">
</div>
<div class="gamebox">
<h1 id="round">Current Round</h1>
</div>
<div class="gamebox hideable">
<h2 id="category">Press Start</h2>
<h2 id="WelcomeScreen">Press Start To Begin</h2>
<p id="Hint">To begin</p>
</div>
<div class="gamebox hideable">
<form>
<h1> Enter your answer: </h1>
<input type="text" name ="userInput" id ="userBox">
</form>
<!-- <div id='SubmitButton'>
<button>Submit</button>
</div> -->
<div id="StartButton">
<button>Start</button>
</div>
<h4 id = "status"></h4>
</div>
<div class="gamebox" id="nameBox" hidden="true">
<form id="SubmitForm">
<h1> Enter your name: </h1>
<input type="text" id = "playerName" name="name">
<input type="hidden" id="ScoreCategory" name="category" value="0">
<input type="hidden" id="ScoreScore" name="score" value="0">
<input type="hidden" id="ScoreTime" name="time" value="0">
</form>
<div id='EnterButton'>
<button>Enter</button>
</div>
</div>
</main>
<footer>
<hr>
<p>© Scratch Idiots</p>
</footer>
</div>
</body>
</html>