-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 2.28 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gladiator Club</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/common.css">
</head>
<body>
<header class="animate__animated animate__fadeInDown">
<div class="logo animate__animated animate__fadeIn">
<img src="images/logo.jpeg" alt="Gladiator Club Logo" class="animate__animated animate__bounceIn">
<h1 class="animate__animated animate__bounceIn">Gladiator Club</h1>
</div>
<nav id="navbar">
<ul>
<li><a href="index.html" class="animate__animated animate__fadeIn">Home</a></li>
<li><a href="pages/members.html" class="animate__animated animate__fadeIn">Members</a></li>
<li><a href="pages/events.html" class="animate__animated animate__fadeIn">Events</a></li>
<li><a href="pages/news.html" class="animate__animated animate__fadeIn">News</a></li>
<li><a href="pages/about.html" class="animate__animated animate__fadeIn">About Us</a></li>
<li><a href="pages/contact.html" class="animate__animated animate__fadeIn">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero-bg">
<div class="hero">
<h1>Welcome to the Gladiator Club</h1>
<p>Unleash Your Inner Warrior in the World of Esports</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe-Owtu0Z9fG7C5Puih4RZDp4jAyZbGhPDa2PPQexMJBlAwgQ/viewform?usp=sf_link" target="_blank" class="cta-button">Register Now</a>
</div>
<div class="game-pictures">
<img src="images/Valorant.jpg" alt="Esports Game 1" class="slideshow animate-slideshow">
<img src="images/PUBG.jpg" alt="Esports Game 2" class="slideshow animate-slideshow">
<img src="images/CSGO.jpg" alt="Esports Game 3" class="slideshow animate-slideshow">
</div>
</section>
<footer class="animate__animated animate__fadeIn">
<p>© 2023 Gladiator Club</p>
</footer>
<script src="js/script.js"></script>
<script src="js/slideshow.js"></script> <!-- Include the new JavaScript file -->
</body>
</html>