-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 4.39 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>What The Font - The Kill</title>
<meta name="description" content="This is the assignment two | What the font - 30 seconds to mars - The kill.">
<meta name="robots" content="noindex, nofollow">
<!-- Add CSS file -->
<link rel="stylesheet" href="./style.css">
<!-- Add our Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/2c1178a64a.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<!-- This will be the section where the album img and title of the song will appear. -->
<section class="title-row">
<img src="./imgs/the-kill.jpg" alt="the-kill-album">
<div id="title">
<h1>The Kill</h1>
<p>Thirty Seconds to Mars</p>
<div class="youtube-link-container">
<span class="youtube-icon">
<i class="fab fa-youtube"></i>
</span>
<a class="youtube-link" href="https://youtu.be/8yvGCAvOAfM?si=E4b-_oddIF47TYUq&t=72"
target="_blank">Watch video</a>
</div>
</section>
<!-- This section will contain all the lyrics -->
<section class="content">
<p>What if I wanted to break<br>
Laugh it all off in your face?<br>
What would you do?<br>
What if I fell to the floor<br>
Couldn't take this anymore?<br>
What would you do, <span class="md-font">do,</span> <span class="lg-font">do?</span><br>
<span class="lg-font">Come, break me <span class="down">down</span><br>
<span class="burry">Bury me, bury me</span><br>
I am finished with <span class="down">you</span><br></span>
What if I wanted to fight<br>
Beg for the <span class="lg-font">rest of my life?<br></span>
What would you do? (Do, do, do)<br>
You say you wanted more<br>
What are you waiting for?<br>
I'm not running from you (from you)<br>
<span class="lg-font">Come, break me <span class="down">down</span><br></span>
<span class="burry">Bury me, bury me</span><br>
I am finished with <span class="down">you</span><br>
<span class="md-font">Look in my eyes</span><br>
You're <span class="killing">killing me, killing me</span><br>
<span class="lg-font">All I wanted was <span class="down">you</span></span><br>
I tried to be someone else<br>
But nothing seemed to change<br>
I know now, this is who <span class="md-font">I really am inside</span><br>
I've finally found <span class="lg-font">myself</span><br>
Fighting for a chance<br>
I know now, <span class="lg-font" id="scream">this is who I really am</span><br>
Oh, oh<br>
Oh, oh<br>
Oh, oh<br>
<span class="lg-font">Come, break me <span class="down">down</span><br></span>
<span class="burry">Bury me, bury me</span><br>
I am finished with <span class="down">you, you, you</span><br>
<span class="md-font">Look in my eyes</span><br>
<span class="killing">You're killing me, killing me</span><br>
All <span class="lg-font">I wanted was <span class="down">you</span></span><br>
<span class="lg-font">Come, break me down<br>
Break me down<br>
Break me <span class="down">down</span><br></span>
What if I wanted to break<br>
(What are you waiting for?)<br>
(Bury me, bury me)<br>
(I'm not running from you)<br>
What if I, what if I, what if I, what if I<br>
(Bury me, bury me)
</p>
</section>
</main>
</body>
</html>