-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtournaments.html
188 lines (153 loc) · 7.33 KB
/
tournaments.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Neighborhoodlively | Tournaments</title>
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/tournaments.css">
<link rel="stylesheet" href="CSS/rules.css">
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Muslim Gamers League by Yusha Evans">
<link rel="icon" href="images/logo.png" type="image/gif" sizes="20x20">
<script src="https://kit.fontawesome.com/939c3b7b3f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> <!--AOS Animations-->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<section id="main" class="">
<div class="navBG slide-in-top" >
<nav class="nav">
<div class="logo-container">
<h2>Neighbor<span style="color: #F8C621;">hood </span>lively</h2>
</div>
<ul class="nav-links-container">
<li><a href="index.html">Home</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="boosters.html">Become a Booster</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="tournaments.html">Tournaments</a></li>
<li><a href="https://discord.gg/mgl" target="_blank" class="joinNowBTN">Join Now</a></li>
</ul>
</nav>
<nav class="mobile-nav">
<div>
<h2>Neighbor<span style="color: #F8C621;">hood </span>lively</h2>
</div>
<div class="mobile-nav-last-div">
<button id="toggleNav" onclick="toggleMobile()"><i class="fas fa-bars"></i></button>
</div>
</nav>
</div>
<div id="mobileLinks">
<ul class="mobile-nav-links-list">
<li><a href="index.html">Home</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="boosters.html">Become a Booster</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="tournaments.html">Tournaments</a></li>
</ul>
</div>
<div class="main-tournament">
<div class="Tslideshow-container">
<div class="TSlides fade">
<a href="#"><img src="https://i.ibb.co/4ZY98Ds/Web-Design-Services-Instagram-Post-Made-with-Poster-My-Wall.jpg" class="tourney-img"></a>
</div>
<div class="TSlides fade">
<a href="#"><img src="https://i.ibb.co/ydrt0c6/Web-Design-Services-Instagram-Post-Made-with-Poster-My-Wall-1.jpg" class="tourney-img"></a>
</div>
<div class="TSlides fade">
<a href="#"><img src="https://i.ibb.co/Pj38vQ8/images.jpg" class="tourney-img"></a>
</div>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot dot1" onclick="currentSlide(1)"></span>
<span class="dot dot2" onclick="currentSlide(2)"></span>
<span class="dot dot3" onclick="currentSlide(3)"></span>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
</div>
<div class="menu">
<button onclick="openCity(event, 'calendar')" class="menuButton activatedMenu">Calendar</button>
<button onclick="openCity(event, 'waysToPlay')" class="menuButton">Email</button>
<button onclick="openCity(event, 'rulesAndGuidelines')" class="menuButton">Contact Number</button>
</div>
</div>
<div class="menuContent waysToPlay" id="waysToPlay">
adnanmuhammad4393@gmail.com.
</div>
<div class="menuContent rulesAndGuidelines" id="rulesAndGuidelines">
+91 9656778508
</div>
</div>
<footer>
<div class="footer-left-wing">
</div>
<div class="footer-center-wing">
<a href="" class="footer-email">communityfirefox87@gmail.com</a>
<img class="footer-logo" src="https://i.ibb.co/5Lr5Ypk/Screenshot-2024-06-22-114319.png" alt="">
<p class="copyright">Copyright Ad web comic agency Designed & Developed by <a href="https://adwebcomicagency.vercel.app/" style="text-decoration: underline; color: gray;">MCC</a></p>
</div>
</footer>
<script src="JS/main.js"></script>
<script>
//This function toggles the mobile navbar
function toggleMobile() {
var x = document.getElementById("mobileLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
var slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("TSlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
openCity(event, 'calendar');
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("menuContent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("menuButton");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" activatedMenu", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " activatedMenu";
}
</script>
<!--Animation AOS-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>