-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.31 KB
/
index.html
File metadata and controls
36 lines (31 loc) · 1.31 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
<!DOCTYPE html>
<html lang="pt-BR">
<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">
<title>Tic Tac Toe</title>
<link rel="icon" href="assets/img/tic-tac-toe.png">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<h1 class="container">Tic Tac Toe</h1>
<button class="restart">Restart</button>
<section class="container tab-section">
<table>
<button class="camp top-border left-border 00"></button>
<button class="camp top-border 01"></button>
<button class="camp top-border right-border 02"></button>
<button class="camp left-border 10"></button>
<button class="camp 11"></button>
<button class="camp right-border 12"></button>
<button class="camp left-border bottom-border 20"></button>
<button class="camp bottom-border 21"></button>
<button class="camp bottom-border right-border 22"></button>
</table>
</section>
<p class="thcls"><a href="https://github.com/thcls"><i class='fa fa-github blue-color'></i> thcls/</a></p>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>