-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<title>GART 2019</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('yosemite.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
.quotes {display: none;}
</style>
</head>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge">
Great American Road Trip
</div>
<div class="w3-display-middle">
<h1 class="w3-jumbo quotes">2019 Trip</h1>
<h1 class="w3-jumbo quotes">April 18, 2019</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<p class="w3-large w3-center" id="countdown"></p>
<p class="w3-center"><a class="fab fa-cc-paypal" style="font-size:2em;text-decoration:none;" href="https://paypal.me/jacobmday"></a></p>
</div>
<div class="w3-display-bottomleft w3-padding-large">
Sponsored by <a href="https://jacobday.github.io/" target="_blank">Jacob Day</a> <i class="far fa-user-circle"></i>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="countdown.js"></script>
<script src="fade.js"></script>
</body>
</html>