-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrpg.html
93 lines (91 loc) · 3.55 KB
/
rpg.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>RPG 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>RPG Games ⚔️</h1>
<div>
<button class="button">⚔️ The Witcher 3</button>
<button class="button">🧙♂️ Final Fantasy VII</button>
<button class="button">🗡️ Dark Souls</button>
<button class="button">🧝♂️ Dragon Age: Inquisition</button>
<button class="button">🧙♂️ Skyrim</button>
<button class="button">⚔️ Persona 5</button>
<button class="button">🗡️ Baldur's Gate 3</button>
<button class="button">🧙♂️ Mass Effect</button>
<button class="button">🧝♀️ Divinity: Original Sin 2</button>
<button class="button">⚔️ Xenoblade Chronicles</button>
<button class="button">🗡️ Fallout 4</button>
<button class="button">🧙♂️ Monster Hunter: World</button>
<button class="button">🧝♂️ Fire Emblem: Three Houses</button>
<button class="button">⚔️ Nioh</button>
<button class="button">🗡️ The Legend of Zelda: Breath of the Wild</button>
<button class="button">🧙♂️ Genshin Impact</button>
<button class="button">🧝♀️ Ni no Kuni II</button>
<button class="button">⚔️ Tales of Arise</button>
<button class="button">🗡️ Octopath Traveler</button>
<button class="button">🧙♂️ The Outer Worlds</button>
<button class="button">⚔️ Darkest Dungeon</button>
<button class="button">🧝♀️ Etrian Odyssey</button>
<button class="button">🗡️ The Banner Saga</button>
<button class="button">🧙♂️ Chrono Trigger</button>
<button class="button">⚔️ Witcher: Monster Slayer</button>
<button class="button">🧝♂️ Dragon Quest XI</button>
<button class="button">⚔️ Hades</button>
<button class="button">🗡️ Cyberpunk 2077</button>
<button class="button">🧙♂️ Baldur's Gate II</button>
<button class="button">⚔️ Tactics Ogre</button>
</div>
<a href="index.html" class="back-button">Back to Home</a>
</body>
</html>