-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChess.html
More file actions
37 lines (30 loc) · 729 Bytes
/
Chess.html
File metadata and controls
37 lines (30 loc) · 729 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chess board</title>
<style>
body {
text-align: center;
}
.cell {
height: 60px;
width: 60px;
border: 1.5px solid grey;
border-style: inset;
}
.blackcell {
background-color: saddlebrown;
}
.whitecell {
background-color: gray;
}
</style>
<div class="piece" id="piece">
</div>
<link rel="stylesheet" type="text/css" href="CSS/Chess.css">
</head>
<body>
<script src="JS/Chess.js"></script>
</body>
</html>