-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtournaments.html
More file actions
198 lines (193 loc) · 9.81 KB
/
tournaments.html
File metadata and controls
198 lines (193 loc) · 9.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" href="/assets/images/profile.png">
<title>CLASH ARENA</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar gradient navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">CLASH</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="tournaments.html">Tournaments <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="community.html">Community</a>
</li>
<button type="button" class="discord btn btn-info mx-auto"><i class="fab fa-discord"></i> <a href="https://discord.com/" target="_blank">Discord</a></button>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<!-- Main Image -->
<div class="container-fluid tournament-container">
<div class="tournament-overlay"> </div>
<div class="row">
<div class="col-12">
<section class="callout jumbotron text-center">
<h1 class="jumbotron-header text-uppercase mb-5">tournaments</h1>
</section>
</div>
</div>
</div>
<!-- End Main Image -->
<!--Tournament cards--><!--Cards adapted from bootstrap-->
<div class="container-fluid tournament-bg-color">
<div class="row row-cols-1 row-cols-md-4 text-center">
<div class="col mb-5">
<div class="card mt-5 text-center">
<img src="assets/images/WZ.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Warzone Killrace</h5>
<hr class="block-divider-black-slim"/>
<p class="card-text">Kill Race is the most common competitive game play for warzone. Rules are simple, you are given a time frame 6pm-10pm CT to clean as many lobbies as possible. Record your top 4 game with the most kills and report it in to see how you stacked up against the competition.</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#underConstruction">Sign Up!</a>
</div>
</div>
</div>
<div class="col mb-5">
<div class="card mt-5">
<img src="assets/images/apex.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Apex League</h5>
<hr class="block-divider-black-slim"/>
<p class="card-text">This is a duo's tournament. The first ever Apex Legends console global series tournament for Xbox and PlayStation only</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#underConstruction">Sign Up!</a>
</div>
</div>
</div>
<div class="col mb-5">
<div class="card mt-5">
<img src="assets/images/fifa.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">The FIFA eWorld Cup</h5>
<hr class="block-divider-black-slim"/>
<p class="card-text">Each tournament has players competing in games of the latest incarnation of the FIFA video game series.</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#underConstruction">Sign Up!</a>
</div>
</div>
</div>
<div class="col mb-5">
<div class="card mt-5">
<img src="assets/images/fortnite.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Fortnite Events</h5>
<hr class="block-divider-black-slim"/>
<p class="card-text">Here you'll find tournaments that may include rewards and prizes for top performers. Tournaments are recurring, timed sessions that can feature any of the Game Modes or variants you've come to know in Fortnite.</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#underConstruction">Sign Up!</a>
</div>
</div>
</div>
</div>
</div>
<!--End Tournament cards-->
<!-- /. Industry Partners -->
<div class="container-wrapper">
<div class="container industry-container content-container">
<section class="affiliates">
<div class="container text-center">
<div class="row icons">
<div class="col-12 player-header">
<h2 class="text-uppercase">Industy Partners</h2>
<hr class="block-divider--black">
</div>
<div class="col-md-3"><a href="https://www.youtube.com/" target="_blank"><img src="assets/images/icon2.png" alt="affiliate companies"
class="img-fluid"></a></div>
<div class="col-md-3 p-2"><a href="https://www.twitch.tv/" target="_blank"><img src="assets/images/icon1.png" alt="affiliate companies"
class="img-fluid"></a></div>
<div class="col-md-3 p-2"><a href="https://gfuel.com/" target="_blank"><img src="assets/images/icon3.png" alt="affiliate companies"
class="img-fluid"></a></div>
<div class="col-md-3 p-2"><a href="https://www.corsair.com/ww/en/" target="_blank"><img src="assets/images/icon7.png" alt="affiliate companies"
class="img-fluid"></a></div>
</div>
</div>
</section>
</div>
</div>
<!-- /. End Industry Partners -->
<!-- /. Under construction Modal -->
<div class="modal" tabindex="-1" role="dialog" id="underConstruction">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body under-construction">
<div class="row">
<div class="col-md text-uppercase text-center">
<p>please note this part of the website is still under construction!</p>
<button type="button" class="btn btn-warning"><a href="index.html">Return Home</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /. End Under construction Modal -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
<!-- /. Social links -->
<footer class="container-fluid">
<div class="row text-center">
<div class="col-sm-12">
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank" href="https://www.facebook.com/">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/?lang=en">
<i class="fab fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.instagram.com/">
<i class="fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.twitch.tv/">
<i class="fab fa-twitch" aria-hidden="true"></i>
<span class="sr-only">Twitch</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://discord.com/">
<i class="fab fa-discord" aria-hidden="true"></i>
<span class="sr-only">Discord</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.youtube.com/">
<i class="fab fa-youtube" aria-hidden="true"></i>
<span class="sr-only">YouTube</span>
</a>
</li>
</ul>
<p>© 2020 | CLASH ARENA</p>
</div>
</div>
</footer>
<!-- /. End Social Links -->
</html>