-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.36 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Survivor Pool</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<div id="nav"></div>
<div class="container-fluid text-center py-5">
<div class="row">
<div class="col"></div>
<div class="col-6">
<div class="logo">
<img src="static/images/SurvivorLogo.png" alt="Survivor Logo" class="img-fluid"></img>
</div>
</div>
<div class="col"></div>
</div>
</div>
<div class="container-fluid text-center">
<div class="row">
<div class="col"></div>
<div class="col-8 bg-dark m-1 p-4 rounded shadow-lg opacity-75">
<div class="decription text-light">
<h2 class="fs-1 fw-bold">Welcome to our AMAZE-TASTIC Survivor Pool!</h2>
<a href="season47.html" type="button" class="btn btn-outline-light" role="button">Click here for most recent season</a>
</div>
</div>
<div class="col"></div>
</div>
</div>
<div class="container-fluid text-center">
<div class="row">
<div class="col"></div>
<div class="col-8 bg-dark m-1 p-4 rounded shadow-lg opacity-75">
<div class="decription text-light">
<h2 class="fs-1 fw-bold">Rules</h2>
<h4 class="fs-2">$10 per contestant assigned</h4><br>
<h4 class="fs-2">Winner takes all</h4><br>
<h4 class="fs-2">If an unassigned contestant ends up winning, we will roll the pot over to next season!</h4><br>
<h4 class="fs-2">Table updated on Sundays with eliminations</h4>
</div>
</div>
<div class="col"></div>
</div>
</div>
<div id="foot"></div>
<script src="main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>