-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
118 lines (108 loc) · 4.93 KB
/
events.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pink Floyd The events</title>
<!-- favicon -->
<link rel="icon" type="image/png"
href="https://thestarvingcoder.github.io/favorite_band/assets/images/favicon.ico?" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://thestarvingcoder.github.io/favorite_band/assets/styles/style.css">
</head>
<body>
<!-- nav bar code -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://thestarvingcoder.github.io/favorite_band/index.html">Pink Floyd</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="https://thestarvingcoder.github.io/favorite_band/band.html">The Band</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/events.html">Events</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/oldbutgold.html">Old but Gold</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/contact.html">Contact Us!</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/mockup.html">Mock up Page</a></li>
</ul>
</div>
</div>
</nav>
<!-- Animated Bar -->
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="tour center">Tour progress</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
50%
</div>
</div>
<p class="tour center">The World Tour is underway! Get your tickets NOW!</p>
</div>
</div>
<!-- Calender -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<div class="container-fluid center">
<div class="col-sm-12">
<div class="col-2 text-right">
<h1 class="display-4 center"><span class="badge badge-secondary">23</span></h1>
<h2 class="center">OCT</h2>
</div>
<div class="col-10">
<h3 class="text-uppercase "><strong>New York, New York</strong></h3>
<ul class="list-inline">
<li class="list-inline-item"><i class="fa fa-calendar-o" aria-hidden="true"></i> Monday</li>
<li class="list-inline-item"><i class="fa fa-clock-o" aria-hidden="true"></i> 5:30 PM - 1:00 AM</li>
<li class="list-inline-item"><i class="fa fa-location-arrow" aria-hidden="true"></i> Madison Square Garden
</li>
</ul>
<p>Live from the famous Madison Square Garden!</p>
</div>
</div>
</div>
<!-- -->
<div class="container-fluid center">
<div class="col-sm-12">
<div class="col-2 text-right">
<h1 class="display-4 center"><span class="badge badge-secondary">27</span></h1>
<h2 class="center">OCT</h2>
</div>
<div class="col-10">
<h3 class="text-uppercase center"><strong>San Francisco, California</strong></h3>
<ul class="list-inline center">
<li class="list-inline-item"><i class="fa fa-calendar-o" aria-hidden="true"></i> Friday</li>
<li class="list-inline-item"><i class="fa fa-clock-o" aria-hidden="true"></i> 5:30 PM - 1:00 AM</li>
<li class="list-inline-item"><i class="fa fa-location-arrow" aria-hidden="true"></i> The War field</li>
</ul>
<p>Live from the famous War Field!</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid center">
<i class="fa fa-facebook-square 5x" aria-hidden="false"></i>
<i class="fa fa-spotify" aria-hidden="false"></i>
<i class="fa fa-twitter-square" aria-hidden="false"></i>
<i class="fa fa-instagram" aria-hidden="false"></i>
</footer>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</body>
</html>