forked from KendallDoesCoding/let-it-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (87 loc) · 4.75 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Let It Be - 1970 Album by The Beatles</title>
<script src="https://kit.fontawesome.com/72f2609661.js" crossorigin="anonymous"></script>
<!-- Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-55DLRTJ04T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-55DLRTJ04T');
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TR6RS2G');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TR6RS2G"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="header">
<!-- Title of the website -->
<h1 class="heading">Let It Be - 1970</h1>
<!-- This div defines a switch button appear on page -->
<div id="switch">
<label class="switch">
<!-- After click on checkbox it changes mode (Changes background color) -->
<input type="checkbox">
<!-- span contain two class slider and round -->
<span class="slider round"></span>
</label>
</div>
</div>
<!-- Link to the youtube channel "The Beatles" -->
<p class="the-beatles">Album by <a href="https://www.youtube.com/TheBeatles">The Beatles</a></p>
<div class="playlist-icons">
<!-- Icons of the popular sites for Music -->
<a href="/apple-music" target="_blank"><img src="/images/apple-music.svg" alt="apple-music" width="30" height="30"></a>
<a href="/yt-music" target="_blank"><img src="/images/youtube-music.svg" alt="youtube-music" width="30" height="30"></a>
<a href="/youtube" alt="youtube" target="_blank"><i id="youtube" class="fa fa-youtube fa-2x" aria-hidden="true"></i></a>
<a href="/spotify" alt="spotify" target="_blank"><i id="spotify" class="fa fa-spotify fa-2x" aria-hidden="true"></i></a>
</div>
<div class="christmas_day_message">
<p>We at KendallDoesCoding, wish you a Merry Christmas, enjoy your day and make sure you come here and listen to this album
a couple times during your day for Santa to put you his good list!. 😊
</p>
</div>
<div class="new_years_message">
<p>We at KendallDoesCoding, wish you a very Happy New Year. Have an epic year! 😊
</p>
<p> PS: listen to Christmas Music throughout the year, not only during Christmas time. </p>
</div>
<iframe id="embed" src="https://www.youtube.com/embed/TtY9eRayseg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- songs container, the contents of the div are called upon in the js file, thus this div is empty. -->
<div class="songs">
</div>
<!--<div class="container">
<div id="lyrics" class="button">
<a href="/lyrics" id="lyrics-btn" class="btn">
Lyrics/Individual Song Page
</div> -->
</div>
<!-- This div is link to another page (which is in rating folder) in which can rate the favourite song -->
<div class="rate-song">
<p class="rate"><a href="/rating" target="_blank">Rate Song<i id="star" class="fas fa-star"></i></a></p>
</div>
<!-- This div is empty and doen't work currently. -->
<div class="other-pro">
<p class="otherprojects"><a href="/otherprojects" target="_blank">Other Similar Projects</a></p>
</div>
</div>
</body>
<script type="text/javascript" src="scripts/christmasday.js"></script>
<script type="text/javascript" src="scripts/newyears.js"></script>
<script type="text/javascript" src="index.js"></script>
</html>