-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.html
More file actions
97 lines (97 loc) · 3.39 KB
/
memory.html
File metadata and controls
97 lines (97 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5QF2LGP');</script>
<!-- End Google Tag Manager -->
<html>
<head>
<title>Simon</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="Simon" />
<meta name="keywords" content="Simon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="css/main-style.css"/>
<script defer src="js/init.js"></script>
<script defer src="js/ext/firebase-app-compat.js"></script>
<script defer src="js/ext/firebase-database-compat.js"></script>
<script defer src="js/scores.js"></script>
<script defer src="js/memory.js"></script>
<link rel="stylesheet" href="css/memory.css" />
</head>
<body class="left-sidebar">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5QF2LGP"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Header -->
<div id="header">
<div class="topnav" id="myTopnav"></div>
<!-- Logo -->
<div id="logo">
<h1><a href="#">Simon</a></h1><br>
</div>
</div>
<!-- Main -->
<div id="main" class="container">
<div class="row 50%">
<div>
<!-- Content -->
<div id="content"><br>
<div class="row 50%">
<section class="box">
<form> <br>
<button class="button label" onClick="startGame(); event.preventDefault()">Start!</button>
</form>
</section>
<section class="box">
<form>
Score:
<span class="score label">0</span>
</form>
</section>
<section class="box" style="display:none">
<form>
Level:
<span id="Mode" class="label"></span>
<br><b><span id="TempScore"></span></b>
</form>
</section>
</div>
<div class="row 50%">
<section class="box">
<div class="memory">
</div>
</section>
</div>
</div>
</div>
</div><br>
<div class="row 50%">
<section class="box">
<form class="scores">
<label for="userName"></label>
<input type="text" name="fname" autocomplete="given-name" id="userName" placeholder="Name"/>
</form>
</section>
<section class="box">
<form class="scores">
<table id="board" class="scores">
<tr>
<th>Name</th>
<th>High <br>Score</th>
</tr>
</table>
</form>
</section>
</div>
</div>
<div id="copyright">
<ul>
<li>© <a href="fullscores.html">Hans Juneby</a></li>
</ul>
</div>
</body>
</html>