-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 900 Bytes
/
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
<html>
<head>
<title>Chess Board</title>
</head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<body>
<div class="main-heading">chess Game</div>
<div class="main-div">
<div class="chessBoard">
</div>
<div class="stats">
<input id="p1" placeholder="Player 1 name"><br>
<input id="p2" placeholder="Player 2 name">
<div class="playerChance"></div>
<div class="alert"></div>
<button id = "button">Start</button>
</div>
</div>
<script src="script.js" >
</script>
</body>
</html>