-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomp.html
More file actions
53 lines (53 loc) · 1.87 KB
/
comp.html
File metadata and controls
53 lines (53 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type = "text/css" href="bead.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>Document</title>
</head>
<body>
<header>
<div>Amőba gép ellen</div>
</header>
<button class="mdc-button" onclick="exit" id="exit">
<i class="material-icons">exit_to_app</i>
</button>
<main id="container">
<div id="message">Üdv!</div>
<section id="table">
<table>
<tr id="first_row" class="row">
<td id="0" class="item"></td>
<td id="1" class="item"></td>
<td id="2" class="item"></td>
</tr>
<tr id="second_row" class="row">
<td id="3" class="item"></td>
<td id="4" class="item"></td>
<td id="5" class="item"></td>
</tr>
<tr id="third_row" class="row">
<td id="6" class="item"></td>
<td id="7" class="item"></td>
<td id="8" class="item"></td>
</tr>
</table>
</section>
<footer>
<div id="btn">
<button onclick="restart" id="restart">Újrakezdés</button>
</div>
<table id="akt">
<tr id="aktfirst">
<td valign="top" id="x" class="item2">X</td>
<td valign="top" id="o" class="item2">O</td>
</tr>
</table>
</footer>
</main>
<script src="tictactoe2.js"></script>
</body>
</html>