-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroadmap_old.html
More file actions
63 lines (58 loc) · 2.69 KB
/
Copy pathroadmap_old.html
File metadata and controls
63 lines (58 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boss Roadmap - Fent Clicker</title>
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/roadmap.css">
</head>
<body>
<nav class="navbar">
<div class="logo">Fent Clicker</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="roadmap.html">Boss Roadmap</a></li>
</ul>
</nav>
<div class="container">
<h1 class="neon-red">BOSS (Wanna steal your fent)</h1>
<div class="roadmap-grid">
<div class="boss-card" data-boss="cop">
<div class="boss-image-container">
<img src="img/cropped.gif" alt="The Cop" class="boss-image">
</div>
<h3 class="neon-yellow">The Cop</h3>
<p class="neon-purple">Difficulty: Easy</p>
<button class="boss-button neon-green" onclick="window.location.href='bossfight.html?boss=cop'">FIGHT</button>
</div>
<div class="boss-card" data-boss="narc">
<div class="boss-image-container">
<img src="img/ice_officer.avif" alt="The ICE" class="boss-image">
</div>
<h3 class="neon-yellow">THE ICE OFFICER</h3>
<p class="neon-purple">Difficulty: Medium</p>
<button class="boss-button neon-green" onclick="window.location.href='bossfight.html?boss=narc'">FIGHT</button>
</div>
<div class="boss-card" data-boss="dealer">
<div class="boss-image-container">
<img src="img/soyjak_outsmarting.avif" alt="The Goy" class="boss-image">
</div>
<h3 class="neon-yellow">Peasant Goy</h3>
<p class="neon-purple">Difficulty: Hard</p>
<button class="boss-button neon-green" onclick="window.location.href='bossfight.html?boss=dealer'">FIGHT</button>
</div>
<div class="boss-card" data-boss="cartel">
<div class="boss-image-container">
<img src="img/kirkified_temple.avif" alt="The Cartel" class="boss-image">
</div>
<h3 class="neon-yellow">The Kirkified Tower</h3>
<p class="neon-purple">Difficulty: Extreme</p>
<button class="boss-button neon-green" onclick="window.location.href='bossfight.html?boss=cartel'">FIGHT</button>
</div>
</div>
</div>
<script type="module" src="js/RoadmapHandler.js"></script>
</body>
</html>