-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.html
More file actions
40 lines (38 loc) · 1.22 KB
/
memory.html
File metadata and controls
40 lines (38 loc) · 1.22 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
<html >
<head>
<script src="mem.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p>
Du har <span id="stik">0</span> stik</p>
<p id="startButtons">
<button name="gamePadSize" value="4" >4 brikker</button>
<button name="gamePadSize" value="16" >16 brikker</button>
<button name="gamePadSize" value="36" >36 brikker</button>
<button name="gamePadSize" value="64" >64 brikker</button>
</p>
<table id="gamePad">
<tr>
<td>
<span class="number">11</span>
<span class="blind">:-)</span>
</td>
<td>
<span class="number">9</span>
<span class="blind">:-)</span>
</td>
</tr>
<tr>
<td>
<span class="number">9</span>
<span class="blind">:-)</span>
</td>
<td>
<span class="number">11</span>
<span class="blind">:-)</span>
</td>
</tr>
</table>
</body>
</html>