-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.html
More file actions
41 lines (38 loc) · 2.01 KB
/
music.html
File metadata and controls
41 lines (38 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Insomniac Time Travelers Store</title>
<!-- linked stylesheet below -->
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>INSOMNIAC TIME TRAVELERS</header>
<nav><a href="index.html">BOOKS</a> <a href="music.html">MUSIC</a> </nav>
<div id="container">
<div id="book1" class='book product'>
<div class="title">Bringing Down the Horse</div>
<img src="http://diffuser.fm/files/2013/05/wallflowersbringing.jpg">
<div class="price">$9.99</div>
<div class="author">by The Wallflowers</div>
<div class="descr">Not only a staggering commercial success, the disc is also a superb example of the folk-rock Jakob's daddy helped pioneer more than 30 years ago. The Wallflowers don't need family relations to command respect. Triple platium in 1992!!</div>
</div>
<div id="book2" class='book product'>
<div class="title">17-11-70</div>
<img src="http://o.scdn.co/cover/0f8239b79425ec97ef9d7d33d5f1e9ac6cfd023d">
<div class="price">$9.99</div>
<div class="author">by Elton John</div>
<div class="descr">The recording was taken from a live radio broadcast on 17 November 1970. The recording was originally popular among bootleggers which, according to Gus Dudgeon, eventually prompted the record label to release it as an album. I feel this is his best work!</div>
</div>
</div>
<!-- all HTML content goes above this line -->
<!-- connected libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!-- connected custom scripts -->
<script type="text/javascript" src="scripts.js"></script>
<footer>see ya later...or earlier</footer>
</body>
</html>