-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshows.html
99 lines (95 loc) · 4.79 KB
/
shows.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover-min.css" type="text/css" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale-1">
</head>
<body>
<header class="header-container-fluid">
<a href="index.html">
<div class="col-md-4 logo"></div>
</a>
<div class="col-md-8">
<ul id="nav" class="list-inline clearfix">
<li class="col-xs-6 col-sm-3 ul-menu-color-home menuitem">
<a href="index.html" class="hvr-pulse"><i class="fa fa-home" aria-hidden="true"></i><span>Home</span></a>
</li>
<li class="col-xs-6 col-sm-3 ul-menu-color-shows menuitem">
<a href="shows.html" class="hvr-pulse"><i class="fa fa-music" aria-hidden="true"></i><span>Shows/Videos</span></a>
</li>
<li class="col-xs-6 col-sm-3 ul-menu-color-the-band menuitem">
<a href="the-band.html" class="hvr-pulse"><i class="fa fa-users" aria-hidden="true"></i><span>Gigs/Members</span></a>
</li>
<li class="col-xs-6 col-sm-3 ul-menu-color-contact menuitem">
<a href="contact.html" class="hvr-pulse"><i class="fa fa-beer" aria-hidden="true"></i><span>Contact</span></a>
</li>
</ul>
</div>
<div class="col-md-8">
<div class="col bg-color-name-title">
<div class="heading">
</div>
</div>
</div>
</header>
<section class="container-fluid ul-menu-color-the-band">
<div class="col-md-6">
<div class="row">
<div class="row bg-color-video">
<h4 class="video-heading uppercase">Found Away Video</h4>
<p class="video-text">
Found away performed at The Providence, Hove 06/12/2008.. A great audience and wonderful vibe!
</p>
<video class="video" controls>
<source src="assets/music/found_away_video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="row bg-color-video">
<h4 class="video-heading uppercase">T6R Albert Live Show</h4>
<p class="video-text">
Full live gig recorded at the Prince Albert Brighton 12/09/2009.. Thanks to all who made it amazing!!
</p>
<video class="video" controls>
<source src="assets/music/T6R_Albert.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</section>
<footer class="footer-container-fluid">
<div id="footer-details" class="row">
<div class="col-sm-4">
<h5 class="uppercase general-sub ">T6R Social</h5>
<ul class="list-inline social-links ">
<li><a target="_blank" href="#"><i class="fa fa-facebook "></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-twitter "></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-pinterest "></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-instagram "></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-youtube "></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-soundcloud "></i></a></li>
</ul>
</div>
<div class="col-sm-4 ">
<h5 class="uppercase general-sub">Get in touch with us!!</h5>
<a href="contact.html" class='btn btn-danger'>Contact</a>
<p class="inline-block ">
Available for Gigs, Parties, Weddings, Summer Balls etc.
</p>
<p class="copyright">The Sixth Row 2019 | All Rights Reserved</p>
</div>
<a href="index.html">
<div class="col-sm-4 footer-image"></div>
</a>
</div>
</footer>
</body>
</html>