-
Notifications
You must be signed in to change notification settings - Fork 0
/
song.html
40 lines (39 loc) · 1.31 KB
/
song.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
</style>
<link rel="stylesheet" href="style.css" />
<title>Portofolio | code</title>
</head>
<body>
<!-- container untuk navigasi -->
<nav>
<div class="navbar">
<ul class="navbar-list">
<li class="navbar-item"><a href="/index.html">Home</a></li>
<li class="navbar-item"><a href="/about.html">About</a></li>
<li class="navbar-item"><a href="/blogs.html">Blogs</a></li>
<li class="navbar-item"><a href="/projects.html">Projects</a></li>
<li class="navbar-item"><a href="/song.html">Spotify</a></li>
</ul>
</div>
</nav>
<main>
<article class="article">
<h2 class="title">Spotify Taste</h2><br>
<p class="paragraph-item">Just A bunch random stuff. Feel free to check them out!</p><br>
<h2 class="title">Music</h2>
<p class="paragraph-item">List of my top tracks & current playing song</p><br>
<img
src="image/spotify (1).png"
alt="Spotify"
width="100px"
/>
</article>
</main>
</body>
</html>