-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmusic.html
114 lines (112 loc) · 6.16 KB
/
music.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Guns N' Roses | Rock Band </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.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.1.1/css/hover-min.css" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Spectral+SC:300,400,400i,500,600,700,800" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">GUNS N' ROSES</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="funclub.html">Fan club</a></li>
<li><a href="bookus.html">Book us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<section>
<div class="container-fluid music-section">
<div class="row">
<div class="col-xs-12 col-md-12">
<img src="images/logomusic.jpg" alt="logo" class="img-rounded">
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2 music-table">
<table class="table table-hover">
<tr>
<th>Song</th>
<th>Album</th>
<th>Listen</th>
</tr>
<tr>
<th>Welcome to the Jungle</th>
<th>Appetite For Destruction</th>
<th><audio controls="controls"><source src="music/WelcomeToTheJungle.mp3" type="audio/mpeg"></audio></th>
</tr>
<tr>
<th>Don't cry</th>
<th>Use Your Illusion I</th>
<th><audio controls="controls"><source src="music/don't cry.mp3" type="audio/mpeg"></audio></th>
</tr>
<tr>
<th>You could be mine</th>
<th>Use Your Illusion II</th>
<th><audio controls="controls"><source src="music/You Could Be Mine.mp3" type="audio/mpeg"></audio></th>
</tr>
<tr>
<th>Hair of the dog</th>
<th>The Spaghetti Incident</th>
<th><audio controls="controls"><source src="music/HairOfTheDog.mp3" type="audio/mpeg"></audio></th>
</tr>
<tr>
<th>Scraped</th>
<th>Chinese Democracy</th>
<th><audio controls="controls"><source src="music/Scraped.mp3" type="audio/mpeg"></audio></th>
</tr>
</table>
</div>
</div>
</div>
</section>
<footer class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
<img src="https://pbs.twimg.com/profile_images/885491686327169024/ufh03Wmg_400x400.jpg" alt="logo" class="footer-logo">
</div>
<div class="col-xs-12 col-sm-12 col-md-4 ">
<h5 class="footer-heading">Awards and Recognition</h5>
<div class="col-md-4 award-img world-music">
</div>
<div class="col-md-4 award-img mtv-music">
</div>
<div class="col-md-4 award-img american-music">
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<h5 class="footer-heading">Connect with us</h5>
<ul class="list-inline social-links">
<li><a target="_blank" href="https://www.facebook.com/gunsnroses"><i class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="https://www.instagram.com/gunsnroses/"><i class="fa fa-instagram"></i></a></li>
<li><a target="_blank" href="https://twitter.com/gunsnroses"><i class="fa fa-twitter"></i></a></li>
<li><a target="_blank" href="https://www.youtube.com/user/GunsNRosesVEVO"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js"></script>
</body>
</html>