-
Notifications
You must be signed in to change notification settings - Fork 3
/
choose.html
57 lines (53 loc) · 1.81 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./Assets/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chessable</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styles/choose.css">
</head>
<body>
<a href="index.html">
<div class="logo-sm">
<img src="Assets/Chessable-logo-dark.png" alt="Chessable logo">
</div>
</a>
<div class="choose-main">
<div class="sub-container">
<a href="two-player.html">
<div>
<img src="Assets/2kings.png" alt="Two player chess">
</div>
</a>
<div class="choose-txt">
2-Player Chess
</div>
</div>
<div class="sub-container four-player-container">
<a href="four-player.html">
<div>
<img src="Assets/4kings.png" alt="Two player chess">
</div>
</a>
<div class="choose-txt">
4-Player Chess
<a class="tooltip" href="info.html">
<img src="Assets/i.png" alt="">
<span class="tooltip-text">Know More!</span>
</a>
</div>
</div>
<div class=" sub-container four-player-info">
<p>
Four player chess variant is compatible only on Desktops. It is not available on mobile devices.
</p>
<a href="info.html">
<button class="know-more-btn">Know More!</button>
</a>
</div>
</div>
<img class="bg-img" src="./Assets/chessable-bg-light.png" alt="background-img">
</body>
</html>