-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
51 lines (43 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Chess</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wghte400;760&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="images/logo.png" class="logo">
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="https://github.com/naemazam/Online-Chess">GitHUb</a></li>
</ul>
</nav>
<img src="images/menu.png" class="menu-icon">
</div>
<div class="row">
<div class="col">
<h1>Chess</h1>
<p>Chess is a board game played between two players. The current form of the game emerged in Southern Europe during the second half of the 15th century after evolving from similar, much older games of Indian and Persian origin. </p>
<a href="AIchess.html">
<button type="button">Play</button>
</a>
</div>
<div class="col">
<a href="Multiplayer.html">
<div class="card card1">
<h2>Multiplayer</h2>
</div> </a>
<a href="AIchess.html">
<div class="card card2">
<h2>Single</h2>
</div> </a>
</div>
</div>
</div>
</body>
</html>