-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
250 lines (217 loc) · 10.8 KB
/
index.html
File metadata and controls
250 lines (217 loc) · 10.8 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Simran Sobhani">
<meta name="description" content="The official website for Arcane Strike">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arcane Strike</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="index.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar-container">
<a href="#" class="navbar-logo">Arcane Strike</a>
<input type="checkbox" id="nav-toggle" class="nav-toggle">
<label for="nav-toggle" class="hamburger">
<span></span>
<span></span>
<span></span>
</label>
<ul class="navbar-menu">
<li><a href="#home">HOME</a></li>
<li><a href="news-1.html">NEWS</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="agents.html">AGENTS</a></li>
</ul>
<div class="navbar-buttons">
<a href="signin.html" class="btn signin-btn">Sign In</a>
<a href="#download" class="btn download-btn">Download</a>
</div>
</div>
</nav>
</header>
<main>
<!-- HERO -->
<section class="hero" id="home">
<div class="hero-overlay"></div>
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">Arcane Strike</h1>
<p class="hero-tagline">Unleash. Conquer. Ascend.</p>
<a href="#download" class="hero-btn btn">Join the Battle</a>
</div>
</div>
</section>
<!-- NEWS SECTION -->
<section class="news-section" id="news">
<h2 class="section-title">Latest News</h2>
<div class="news-container">
<button class="news-arrow left-arrow" id="left-arrow" href="news-3.html">←</button>
<div class="news-cards">
<div class="news-card">
<img src="assets/news-1.png" alt="New Agent Release">
<div class="news-content">
<h3>New Agent: Elara the Butterfly Mage</h3>
<p>Step into the world of nature’s mystery — Elara joins the battlefield with the power of the butterflies.</p>
<a href="news-1.html" class="read-more-btn">Read More</a>
</div>
</div>
<div class="news-card">
<img src="assets/news-2.png" alt="Tournament Announcement">
<div class="news-content">
<h3>Arcane Strike Tournament 2025</h3>
<p>Prepare your teams! The Arcane Arena opens for the most awaited 5v5 clash of power, skill, and strategy.</p>
<a href="news-2.html" class="read-more-btn">Read More</a>
</div>
</div>
<div class="news-card">
<img src="assets/arcane-strike-hero.png" alt="Gameplay Trailer">
<div class="news-content">
<h3>Official Gameplay Trailer Released</h3>
<p>Witness the fusion of magic and combat — dive into the mystical world of Arcane Strike.</p>
<a href="news-3.html" class="read-more-btn">Read More</a>
</div>
</div>
<div class="news-card">
<img src="assets/arcane-strike-hero.png" alt="Gameplay Trailer">
<div class="news-content">
<h3>Official Gameplay Trailer Released</h3>
<p>Witness the fusion of magic and combat — dive into the mystical world of Arcane Strike.</p>
<a href="news-3.html" class="read-more-btn">Read More</a>
</div>
</div>
<div class="news-card">
<img src="assets/arcane-strike-hero.png" alt="Gameplay Trailer">
<div class="news-content">
<h3>Official Gameplay Trailer Released</h3>
<p>Witness the fusion of magic and combat — dive into the mystical world of Arcane Strike.</p>
<a href="news-3.html" class="read-more-btn">Read More</a>
</div>
</div>
</div>
<button class="news-arrow right-arrow" id="right-arrow" href="news-2.html">→</button>
</div>
</section>
<!-- ABOUT SECTION -->
<section class="about-section" id="about">
<div class="about-container">
<div class="about-text">
<h2 class="about-title">About Arcane Strike</h2>
<p class="about-description">
Arcane Strike is a fast-paced 5v5 MOBA set in a world where mystical forces and ancient magic collide.
Players take on the roles of unique heroes wielding elemental powers as they battle across enchanted realms.
Strategy, teamwork, and arcane mastery define every encounter.
<br><br>
Uncover hidden lore, explore breathtaking landscapes, and forge your legend in a universe shaped by power and destiny.
</p>
<a href="about.html" class="about-btn">Learn More</a>
</div>
<div class="about-image">
<img src="assets/about.png" alt="Arcane Strike World">
</div>
</div>
</section>
<!-- AGENTS SECTION -->
<section class="agents-section" id="agents">
<h2 class="section-title">Agents</h2>
<div class="agents-container">
<a href="agents.html#sylara">
<div class="agent-card featured-agent">
<img src="assets/news-2.png" alt="Sylara - The Verdant Mirage">
<div class="agent-info">
<h3 class="agent-name">Sylara</h3>
<p class="agent-class">Nature Mage</p>
</div>
</div>
</a>
<div class="agent-grid">
<a href="agents.html#kael">
<div class="agent-card">
<img src="assets/agent-1.png" alt="Kael - The Emberblade">
<div class="agent-info">
<h3 class="agent-name">Kael</h3>
<p class="agent-class">Fire Swordsman</p>
</div>
</div>
</a>
<a href="agents.html#lira">
<div class="agent-card">
<img src="assets/agent-2.png" alt="Lira - The Frost Huntress">
<div class="agent-info">
<h3 class="agent-name">Lira</h3>
<p class="agent-class">Ice Archer</p>
</div>
</div>
</a>
<a href="agents.html#raik">
<div class="agent-card">
<img src="assets/agent-3.png" alt="Raik - The Storm Fist">
<div class="agent-info">
<h3 class="agent-name">Raik</h3>
<p class="agent-class">Lightning Brawler</p>
</div>
</div>
</a>
<a href="agents.html#nyx">
<div class="agent-card">
<img src="assets/agent-4.png" alt="Nyx - The Shadow Veil">
<div class="agent-info">
<h3 class="agent-name">Nyx</h3>
<p class="agent-class">Void Assassin</p>
</div>
</div>
</a>
<a href="agents.html#tharos">
<div class="agent-card">
<img src="assets/agent-5.png" alt="Tharos - The Stone Sentinel">
<div class="agent-info">
<h3 class="agent-name">Tharos</h3>
<p class="agent-class">Earth Guardian</p>
</div>
</div>
</a>
</div>
</div>
</section>
<!-- MAPS SECTION -->
<section class="maps-section" id="maps">
<h2 class="section-title">Maps</h2>
<div class="maps-container">
<div class="maps-image">
<img src="assets/maps.png" alt="Arcane Strike Map - Realm of Echoes">
</div>
<div class="maps-info">
<h3>Realm of Echoes</h3>
<p>
Step into the <strong>Realm of Echoes</strong> — a battlefield where ancient ruins and mystic forests collide.
Traverse glowing mana streams, uncover hidden shrines, and dominate the arcane landscape.
</p>
<a href="maps-detail.html" class="map-btn">Explore the Map</a>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-container">
<div class="footer-socials">
<a href="#"><img src="assets/icon-youtube.png" alt="YouTube"></a>
<a href="#"><img src="assets/icon-discord.png" alt="Discord"></a>
<a href="#"><img src="assets/icon-twitter.png" alt="Twitter"></a>
<a href="#"><img src="assets/icon-instagram.png" alt="Instagram"></a>
</div>
<div class="footer-content">
<h3 class="footer-title">Arcane Strike</h3>
<p class="footer-tagline">Unleash your power. Conquer the arcane.</p>
</div>
<div class="footer-bottom">
<p>© 2025 Arcane Strike. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>