forked from rebsoo/tbz-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsongs.html
100 lines (91 loc) · 2.56 KB
/
songs.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>THE BOYZ</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="images/logo_header.png"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="membership.html">Membership</a></li>
<li><a href="songs.html">Songs</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="tamanho-fixo">
<ul class="songs">
<li>
<h2>reveal</h2>
<img src="images/reveal.jpg" class="album-image">
<p class="song-quote">tonight i'm down for your love</p>
<p class="album-name">reveal</p>
</li>
<li>
<h2>tattoo</h2>
<img src="images/tattoo.jpg" class="album-image">
<p class="song-quote">the tattoo embedded in my heart</p>
<p class="album-name">tattoo</p>
</li>
<li>
<h2>white</h2>
<img src="images/white.png" class="album-image">
<p class="song-quote">let it snow this starry night</p>
<p class="album-name">white</p>
</li>
</ul>
<ul class="songs">
<li>
<h2>dreamlike</h2>
<img src="images/dreamlike.jpg" class="album-image">
<p class="song-quote">your everything makes me move</p>
<p class="album-name">ddd</p>
</li>
<li>
<h2>bloom bloom</h2>
<img src="images/bloombloom.jpg" class="album-image">
<p class="song-quote">you and the flowers are blooming</p>
<p class="album-name">bloom bloom</p>
</li>
<li>
<h2>the only</h2>
<img src="images/noair.jpeg" class="album-image">
<p class="song-quote">my eyes, breath and heart want you</p>
<p class="album-name">no air</p>
</li>
</ul>
<ul class="songs">
<li>
<h2>the sphere</h2>
<img src="images/righthere.png" class="album-image">
<p class="song-quote">you got it right now it's my time</p>
<p class="album-name">right here</p>
</li>
<li>
<h2>the start</h2>
<img src="images/giddyup.jpg" class="album-image">
<p class="song-quote">let's go to the tip of the sky</p>
<p class="album-name">giddy up</p>
</li>
<li>
<h2>the first</h2>
<img src="images/boy.jpeg" class="album-image">
<p class="song-quote">this isn't just a momentary dream</p>
<p class="album-name">boy</p>
</li>
</ul>
</div>
</main>
<footer>
<img src="images/logo_footer.png">
<p class="copyright">© rebsoo /2020</p>
</footer>
</body>
</html>