-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchess.html
35 lines (32 loc) · 901 Bytes
/
chess.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chess Game</title>
<link rel="stylesheet" href="Asset\styles.css">
</head>
<body>
<div class="container">
<h1>Chess Game</h1>
<button class="button" onclick="startGame()">Start</button>
<button class="button" onclick="aboutUs()">About Us</button>
<button class="button" onclick="quitGame()">Quit</button>
</div>
<div class="footer">
<p>Vivrou: Chess Game</p>
<p>Dev: <span>Your Name</span></p>
</div>
<script>
function startGame() {
alert('Starting the game!');
}
function aboutUs() {
alert('About us!');
}
function quitGame() {
alert('Quitting the game!');
}
</script>
</body>
</html>