-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.46 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Apex</title>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/all.min.css">
<link rel="stylesheet" href="./css/index.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<section class="main container-fluid">
<div class="intro">
<div class="row">
<div class="backgrawnd1"></div>
<div class="col-md-6 padleft">
<h1>Welcome</h1>
<p>Welcome FIGHTER, only a true hero knows this page's secrets. You searched for long for this place >:) , THERE ARE ONLY TWO CHOICES, either Join us Or DIE</p>
<div class="introbuttons">
<button onclick="transitionToPage('./join.html')">Join</button>
<button onclick="transitionToPage('./challenge.html')">Challenge</button>
</div>
</div>
<div class="col-md-6">
<div class="image">
<a href="./lobby.html"><img src="./assets/logo.jpg" alt="logo"></a>
</div>
</div>
</div>
</div>
</section>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/jquery.3.6.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>