-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 956 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
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hz Chess</title>
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="pieces.css">
<link rel="icon" type="image/x-icon" href="pieces/favicon.jpg">
</head>
<body>
<nav class="nav"><div class="title">Hz Chess</div><div class="options"><button class="btn reset">Reset</button></div></nav>
<div class="container">
<div class="chessboard"><div class="up"></div></div>
<div class="co">
<div class="nums"></div>
<div class="cont">
<div class="letters"></div>
<div class="elems"></div>
<div class="letters"></div>
</div>
<div class="nums"></div>
</div>
</div>
</body>
</html>