forked from DevUrf/Game-Hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfighting.html
89 lines (87 loc) · 3.28 KB
/
fighting.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fighting 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>Fighting Games 🥊</h1>
<div>
<button class="button">🥋 Street Fighter V</button>
<button class="button">👊 Mortal Kombat 11</button>
<button class="button">💥 Tekken 7</button>
<button class="button">🥊 Super Smash Bros. Ultimate</button>
<button class="button">🦸♂️ Injustice 2</button>
<button class="button">⚔️ Dragon Ball FighterZ</button>
<button class="button">🎮 Guilty Gear Strive</button>
<button class="button">👊 Dead or Alive 6</button>
<button class="button">🥋 Soulcalibur VI</button>
<button class="button">💥 King of Fighters XV</button>
<button class="button">⚔️ Brawlhalla</button>
<button class="button">🥊 Virtua Fighter 5</button>
<button class="button">🦸♀️ Marvel vs. Capcom: Infinite</button>
<button class="button">💥 BlazBlue: Cross Tag Battle</button>
<button class="button">🥋 Fight Night Champion</button>
<button class="button">👊 WWE 2K Battlegrounds</button>
<button class="button">⚔️ For Honor</button>
<button class="button">🥋 One Piece: Burning Blood</button>
<button class="button">💥 Naruto Shippuden: Ultimate Ninja Storm 4</button>
<button class="button">👊 Samurai Shodown</button>
<button class="button">⚔️ Rivals of Aether</button>
<button class="button">🥋 Power Rangers: Battle for the Grid</button>
<button class="button">💥 Capcom Fighting Collection</button>
<button class="button">👊 My Hero One's Justice 2</button>
<button class="button">⚔️ Nidhogg 2</button>
<button class="button">🥋 Divekick</button>
</div>
<a href="index.html" class="back-button">Back to Home</a>
</body>
</html>