-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfour-choose.html
31 lines (30 loc) · 1.09 KB
/
four-choose.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chessable - 4 Player</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styles/four-choose.css">
</head>
<body>
<a href="index.html">
<div class="logo-sm">
<img src="Assets/Chessable-logo-dark.png" alt="Chessable logo">
</div>
</a>
<img class="bg-img" src="./Assets/chessable-bg-light.png" alt="background-img">
<div class="container">
<a href="four-game-teams.html">
<button id="play-team" class="choose-btn">
<img src="Assets/four-player-team.png" alt="four-player-team">
Team</button>
</a>
<a href="four-game-individual.html">
<button id="play-individual" class="choose-btn">
<img src="Assets/four-player-individual.png" alt="four-player-team">
Individual</button>
</a>
</div>
</body>
</html>