-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (100 loc) · 3.06 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./Assets/Images/equalize.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./Assets/CSS/style.css" />
<!-- Fonte do projeto: Saira -->
<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=Saira:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<title>Playlists</title>
</head>
<body>
<!-- Tela de ínicio -->
<main>
<nav>
<img src="./Assets/Images/equalize.png" width="30" alt="" />
</nav>
<video autoplay muted loop id="myVideo">
<source src="./Assets/Videos/birdsofafeather.mkv" type="video/mp4" />
</video>
<div class="text-main">
<h1>Playlists</h1>
<p>My spotify page, follow me on Github :)</p>
<div class="links">
<a href="https://github.com/iampaylin" class="github" target="_blank"
><img src="./Assets/Images/github-30.png" width="30" alt=""
/></a>
</div>
<div class="songday">
<!--<img src="https://i.scdn.co/image/ab67616d0000b273659cd4673230913b3918e0d5" class="coversongday" alt=""> -->
<p>
Birds Of A Feather <br />
Billie Eilish
</p>
<img
src="./Assets/Images/musicoff.png"
alt=""
id="muteButton"
onclick="toggleMute()"
width="30"
/>
</div>
</div>
<div class="image-main" id="image-main">
<div class="gradient"></div>
</div>
<a
href="https://open.spotify.com/user/4gvin36hbuyictiwzrvnis9b1?si=c0de636f24854beb"
class="spotify-link"
target="_blank"
>
<img src="./Assets/Images/spotify-30.png" alt="Spotify" />
</a>
</main>
<!--
<section class="playlists">
<a
href="https://open.spotify.com/playlist/1TuISr8AFSmAgQPz4a9k89?si=efa8b7cc73594424"
target="_blank"
class="playlist pop"
>
<div class="cover">
<p>POP</p>
</div>
</a>
<a
href="https://open.spotify.com/playlist/3fbZEySpEL2tjEvc2sbEIm?si=638d2e7d37d6476c"
target="_blank"
class="playlist nostalgia"
>
<div class="cover">
<p>
Nostalgia <br />
1980 - 2010
</p>
</div>
</a>
<a
href="https://open.spotify.com/playlist/3zuB9LmdNVzLzCPsoGSxiA?si=0799f6a24f5d42a7"
target="_blank"
class="playlist showtime"
>
<div class="cover">
<p>Showtime</p>
</div>
</a>
</section>
-->
<script src="./Assets/JS/index.js"></script>
</body>
</html>