forked from DevUrf/Game-Hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrategy.html
93 lines (91 loc) · 3.47 KB
/
strategy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strategy 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>Strategy Games ♟️</h1>
<div>
<button class="button">⚔️ StarCraft II</button>
<button class="button">🏰 Age of Empires II</button>
<button class="button">🗺️ Civilization VI</button>
<button class="button">⚔️ Total War: Warhammer II</button>
<button class="button">🏰 Command & Conquer</button>
<button class="button">🛡️ XCOM 2</button>
<button class="button">⚔️ Company of Heroes</button>
<button class="button">🌍 Europa Universalis IV</button>
<button class="button">🏰 Warcraft III</button>
<button class="button">🗡️ Rise of Nations</button>
<button class="button">⚔️ Hearts of Iron IV</button>
<button class="button">🏰 Stronghold Crusader</button>
<button class="button">🗺️ Anno 1800</button>
<button class="button">⚔️ Banner Saga</button>
<button class="button">🏰 Cossacks 3</button>
<button class="button">🛡️ Darkest Dungeon</button>
<button class="button">⚔️ Total War: Rome II</button>
<button class="button">🏰 Planetfall</button>
<button class="button">🗺️ Wargroove</button>
<button class="button">⚔️ Stellaris</button>
<button class="button">🏰 Cities: Skylines</button>
<button class="button">🛡️ Frostpunk</button>
<button class="button">⚔️ Warhammer 40,000: Dawn of War III</button>
<button class="button">🏰 Empires: Dawn of the Modern World</button>
<button class="button">🗺️ Tropico 6</button>
<button class="button">⚔️ Crusader Kings III</button>
<button class="button">🏰 Planet Coaster</button>
<button class="button">🛡️ Civilization: Beyond Earth</button>
<button class="button">⚔️ Command & Conquer: Red Alert 3</button>
<button class="button">🏰 Age of Mythology</button>
</div>
<a href="index.html" class="back-button">Back to Home</a>
</body>
</html>