-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 4.85 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
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
<!doctype html>
<html>
<head>
<title> My Not So Crappy Website </title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css"integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
</head>
<body>
<header>
<nav class="navbar navbar-default affix-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="glyphicon glyphicon-menu-hamburger"></span>
</button>
<a class="navbar-brand" href="index.html"><img id="logo"src="img/thewaystationlogo.webp" class="img-responsive"></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="https://www.thewaystationbk.com/staff">About</a></li>
<li><a href="https://www.thewaystationbk.com/monthly-calendar">Events</a></li>
<li><a href="https://www.thewaystationbk.com/cocktails">Cocktails</a></li>
</ul>
</div>
</nav>
</header>
<img src="img/oldbookcase.jpg">
<div class="jumbotron">
<div id="herotext">
<h1>Help Pay For The Liquor License</h1>
<p>Get A Super Cool Octo-Hoodie</p>
<p><a class="btn btn-primary btn-lg" href="https://www.customink.com/fundraising/waystation?pc=TXN-167778&utm_campaign=fr_org_confirmation&utm_source=fr_organizer_txn&utm_medium=email&utm_content=campaign&fbclid=IwAR3H_ePc8NRMRda1X7NONszx4uJ_trr0EwDPEBJzpECdH4kZOCpgEF6W7IQ" role="button">Check It Out</a></p>
<p> <button id="goals">See Our Progress</button></p>
<div id="goalprogress">
<div class="progress">
<div class="progress-bar" id="bar" role="progressbar" aria-valuenow="730" aria-valuemin="0" aria-valuemax="1000" style="width:0%">$730 raised</div>
</div>
</div>
</div>
</div>
<div class="container">
<h2 class="text-center text-uppercase">What's Going On?</h2>
<div class="row">
<div class="col-sm-4 text-center featurecontainer">
<div class="feature">
<p class="text-center"><img id="imgfeature" src="img/locationtws2.jpg" class="img-responsive img-thumbnail"></p>
<h4 class="text-uppercase"><a href="https://www.thewaystationbk.com/directions">Location and Directions</a></h4>
<p>so where are we?</p>
</div>
</div>
<div class="col-sm-4 text-center featurecontainer">
<div class="feature">
<p class="text-center"><img id="imgfeature"src="img/thetardis2.jpg" class="img-responsive img-thumbnail"></p>
<h4 class="text-uppercase"><a href="https://www.thewaystationbk.com/weekly-calendar">Events</a></h4>
<p>Find out what's going on this week</p>
</div>
</div>
<div class="col-sm-4 text-center featurecontainer">
<div class="feature">
<p class="text-center"><img id="imgfeature" src="img/TheWayStation2.png" class="img-responsive img-thumbnail"></p>
<h4 class="text-uppercase"><a href="https://comicbook.com/approved/2017/08/16/the-cocktail-guide-to-the-galaxy/">Press</a></h4>
<p>Check out the cool stuff they're saying about us</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<a href="https://www.facebook.com/groups/150382788265"><i class="fab fa-facebook" style="font-size: 36px;"></i></a>
<a href="https://www.thewaystationbk.com/instagram-gallery"><i class="fab fa-instagram" style="font-size: 36px;"></i></a>
<a href="https://twitter.com/waystationbk"><i class="fab fa-twitter-square" style="font-size: 36px;"></i></a>
</footer>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
document.getElementById("goals").onclick=function(){
document.getElementById("goalprogress").style.display="block";
// document.getElementById("bar").style.width = "70%";
$("#bar").width("70%");
};
</script>
</body>
</html>