-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horror XO</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header id="hdr">
<h1>Horror XO</h1>
</header>
<Section id="main">
<div id="tableSec" hidden>
<table id="box">
<tr>
<td onclick="xORo(event)" id="00"></td>
<td onclick="xORo(event)" id="01"></td>
<td onclick="xORo(event)" id="02"></td>
</tr>
<tr>
<td onclick="xORo(event)" id="10"></td>
<td onclick="xORo(event)" id="11"></td>
<td onclick="xORo(event)" id="12"></td>
</tr>
<tr>
<td onclick="xORo(event)" id="20"></td>
<td onclick="xORo(event)" id="21"></td>
<td onclick="xORo(event)" id="22"></td>
</tr>
</table>
</div>
<p id="notator" onclick="start()">
Start
<span id="turn"></span>
</p>
</Section>
<footer id="ftr">
<p> - - Developed by Horror - - </p>
</footer>
<script src="script.js"></script>
</body>
</html>