forked from ahmed0saber/xo-game-t4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 2.03 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
<!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>Home | XO Online</title>
<link rel="icon" href="assets/Images/home/tic-tac-toe.png">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="./assets/styles/global.css">
<link rel="stylesheet" href="./assets/styles/home.css">
</head>
<body>
<header>
<a href="./" class="logo">XO Online</a>
<nav>
<ul>
<li>
<div class="icon">
<a href="./"><i class="material-symbols-outlined">
home
</i></a>
</div>
<a href="./">Home</a>
</li>
<li>
<div class="icon">
<a href="./profile/"><i class="material-symbols-outlined">
person
</i></a>
</div>
<a href="./profile/">Profile</a>
</li>
</ul>
</nav>
</header>
<main>
<article class="home">
<section class="text">
X
<span>O</span>
</section>
<section class="menu">
<a href="./game/single-player/index.html">Single Player Easy</a>
<a href="./game/single-player-hard/index.html">Single Player Hard</a>
<a href="./game/two-players/index.html">Two Players</a>
<a href="./about/index.html">About Us</a>
</section>
</article>
</main>
<footer>
<p>Made With <span class="material-symbols-outlined">
favorite
</span> By Ahmed Zena, Mohamed Tharwat and Muhammad Shoaib</p>
</footer>
</body>
</html>