-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaltgame.html
More file actions
72 lines (50 loc) · 1.99 KB
/
altgame.html
File metadata and controls
72 lines (50 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Learn a language with crosswords!</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space+Grotesk">
<script defer src="altgame.js"></script>
</head>
<body>
<section class="layout">
<div class="sidebar">
<h1>LOGO</h1>
<!-- <img src="logo.png" alt="logo" width="100px"><br> -->
<a href="index.html">Home</a><br>
<a href="login.html">Login</a><br>
<a href="signup.html">Sign Up</a><br>
<a href="topplayers.html">Top Player List</a>
<div class="loggedin">
<!-- If user has an active session, then they should see this link. Arrange with javascript. -->
<a href="record.html">My Stats</a>
</div>
<!-- Add Javascript f(x) to re-open sidebar -->
<!-- When sidebar is collapsed, need to reduce width of contents within content -->
<p align="center">
<button onclick="hideSide()"> Click to hide the sidebar!</button>
</p>
</div>
<div class="content">
<h1>Guess the word!</h1>
<center>
<p><b>Word #1:</b></p>
<form>
<p id="word1box">Word1GoesHere</p>
</form>
<!-- <b>Word #2:</b>
<b>Word #3:</b>
<b>Word #4:</b>
<b>Word #5:</b> -->
<!-- <p>
<div class="game2">game pulled form js</div>
</p> -->
<!-- <input type="text" id="box"/> -->
<!-- <input type="text" id="box" onkeydown="validate" onkeyup="validate"/> -->
</center>
<!-- <input type='button' onclick='submitActivity()' value='Submit'/> -->
</div>
</section>
</body>
</html>