-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (89 loc) · 3.23 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
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
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kat Tic-Tac-Toe</title>
<link rel="icon" href="assets/images/favicon.png" />
<script src="src/app.js" type="module" defer></script>
<link href="global/reset.css" rel="stylesheet" />
<link href="global/colors.css" rel="stylesheet" />
<link href="components/Wrapper.css" rel="stylesheet" />
<link href="components/CardContainer.css" rel="stylesheet" />
<link href="components/PlayerCard.css" rel="stylesheet" />
<link href="components/MainContainer.css" rel="stylesheet" />
<link href="components/Board.css" rel="stylesheet" />
<link href="components/Square.css" rel="stylesheet" />
<link href="components/Play.css" rel="stylesheet" />
<link href="components/Result.css" rel="stylesheet" />
<link href="components/Draw.css" rel="stylesheet" />
<link href="components/PlayButton.css" rel="stylesheet" />
<link href="components/Turn.css" rel="stylesheet" />
<link href="components/Move.css" rel="stylesheet" />
<link href="components/Score.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="Wrapper">
<section class="CardContainer">
<div class="PlayerCard">
<div></div>
<strong></strong>
<img src="assets/images/circle.svg" draggable="false" />
</div>
<div class="PlayerCard">
<div></div>
<strong></strong>
<img class="x" src="./assets/images/x.svg" draggable="false" />
</div>
</section>
<div class="MainContainer">
<section class="Play PlayButton">
<div>
<img src="assets/images/Avatar_Cat-512.png" draggable="false" />
<img src="assets/images/Avatar_Dog-512.png" draggable="false" />
<img src="assets/images/Avatar_Panda-512.png" draggable="false" />
<img src="assets/images/Avatar_Rabbit-512.png" draggable="false" />
</div>
<button class="">
<img
class=""
src="assets/images/icons8-circled-play-60.png"
draggable="false"
/>
</button>
</section>
<section class="Board none">
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
<button class="none"></button>
</section>
<section class="none">
<div class="none">
<img
class="none"
src="assets/images/victory.gif"
draggable="false"
/>
</div>
<button class="none">
<img
class="none"
src="assets/images/icons8-circled-play-60.png"
draggable="false"
/>
</button>
</section>
</div>
</div>
</body>
</html>