-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmining.html
More file actions
100 lines (93 loc) · 3.45 KB
/
mining.html
File metadata and controls
100 lines (93 loc) · 3.45 KB
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
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mining Adventure</title>
<link rel="stylesheet" href="mining.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
.home-button {
position: absolute;
top: 20px;
left: 20px;
padding: 0.6rem 1rem;
font-size: 0.9rem;
text-transform: uppercase;
text-decoration: none;
color: #fff;
background: #f39c12;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-button:hover {
transform: scale(1.05);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}
</style>
</head>
<body>
<header>
<a href="index.html" class="home-button">Return Home</a>
<h1>Mining Adventure</h1>
<p>Unleash your hero's true potential. Mine for treasures, unlock rewards, and rise to greatness!</p>
<a href="#mining" class="cta-button">Start Your Quest</a>
</header>
<section class="mining-section" id="mining">
<div class="mine">
<span class="badge">Rare Find</span>
<img src="GM.jpg" alt="BNX Mining">
<h3>Gold Mines of Casterly Rock</h3>
<p>Harvest the abundant gold reserves that once symbolized the Lannisters' wealth.</p> <span class="mine-button">Mine Now!</span>
</div>
<div class="mine">
<span class="badge">Gold Hunter</span>
<img src="img.jpg" alt="Crystal Mining">
<h3>Frostfang Caves </h3><p>Brave the icy northern caves, rich with rare gems and ancient mysteries guarded by the cold.</p> <span class="mine-button">Mine Now!</span>
</div>
<div class="mine">
<span class="badge">Legendary!</span>
<img src="resized_image_252x200 (1) (1).jpg" alt="Gold Mining">
<h3>The Iron Islands Expedition</h3><p>Sail to the Iron Islands to extract treasures hidden beneath stormy cliffs and treacherous waters.</p> <span class="mine-button">Mine Now!</span>
</div>
</section>
<section class="leaderboard-section">
<h2>Leaderboard and Achievements</h2>
<div class="leaderboard">
<div class="player">
<span>Jhon Snow</span>
<span>1500 points</span>
</div>
<div class="player">
<span>Jaime Lannister</span>
<span>1200 points</span>
</div>
<div class="player">
<span>Eddard Stark</span>
<span>900 points</span>
</div>
</div>
<div class="achievements">
<h3>Get This As Achievements</h3>
<div class="achievements-container">
<div class="achievement">
<img src="./armor.jpg" alt="Badge 1">
<p>Armor</p>
</div>
<div class="achievement">
<img src="./daggermain.jpg" alt="Badge 2">
<p>Dragonglass Dagger</p>
</div>
<div class="achievement">
<img src="./gold and gems.png" alt="Badge 3">
<p>Gold & Gems</p>
</div>
</div>
</div>
</section>
<footer>
<p>© 2024 Pixel_Perfect. All rights reserved.</p>
</footer>
</body>
</html>