-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathboard.html
96 lines (94 loc) · 3.47 KB
/
board.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Board Games ♟️</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e0f7fa; /* Light cyan background */
margin: 0;
padding: 20px;
color: #333;
}
h1 {
text-align: center;
color: #00796b; /* Teal color */
}
.button {
background-color: #ffffff; /* White background for buttons */
border: none;
border-radius: 5px;
padding: 15px;
margin: 10px;
width: 200px;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
font-size: 16px;
text-align: center;
display: inline-block;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.button:hover {
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.back-button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #00796b; /* Teal color */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
text-align: center;
text-decoration: none;
transition: background-color 0.3s;
}
.back-button:hover {
background-color: #004d40; /* Darker teal */
}
</style>
</head>
<body>
<h1>Board Games ♟️</h1>
<div>
<button class="button">♟️ Chess</button>
<button class="button">🏠 Monopoly</button>
<button class="button">📚 Scrabble</button>
<button class="button">⬛ Checkers</button>
<button class="button">🧩 Jenga</button>
<button class="button">🎲 Risk</button>
<button class="button">🎭 Clue</button>
<button class="button">🎨 Pictionary</button>
<button class="button">🃏 Uno</button>
<button class="button">🧙♂️ Dungeons & Dragons</button>
<button class="button">⚖️ Settlers of Catan</button>
<button class="button">🔍 Codenames</button>
<button class="button">🌍 Ticket to Ride</button>
<button class="button">🚂 Carcassonne</button>
<button class="button">🎰 The Game of Life</button>
<button class="button">💡 Trivial Pursuit</button>
<button class="button">🧙♂️ Betrayal at House on the Hill</button>
<button class="button">🏆 Azul</button>
<button class="button">📖 Pandemic</button>
<button class="button">🏰 Castle Panic</button>
<button class="button">📦 Catan: Cities & Knights</button>
<button class="button">🎲 Munchkin</button>
<button class="button">🧩 Qwirkle</button>
<button class="button">🔍 Spyfall</button>
<button class="button">🌍 7 Wonders</button>
<button class="button">🏰 Carcassonne: Hunters and Gatherers</button>
<button class="button">🎭 Dixit</button>
<button class="button">🃏 Exploding Kittens</button>
<button class="button">🎨 Codenames: Pictures</button>
<button class="button">🎲 The Resistance</button>
<button class="button">🧩 Azul: Summer Pavilion</button>
<button class="button">🏆 Cosmic Encounter</button>
<button class="button">📖 Gloomhaven</button>
</div>
<a href="index.html" class="back-button">Back to Home</a>
</body>
</html>