-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (90 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EchoFy</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="utility.css" />
</head>
<body>
<div class="container flex bg-black">
<div class="left bg-black">
<div class="home bg-gray rounded m-1 p-2">
<div class="logo">
<img src="logo.svg" alt="SpotifyLogo" class="invert" />
</div>
<ul class="">
<li>
<img src="home.svg" alt="homeIcon" class="invert-semi" />Home
</li>
<li>
<img
src="search.svg"
alt="searchIcon"
class="invert-semi"
/>Search
</li>
</ul>
</div>
<div class="library bg-gray m-1 p-2 rounded">
<div class="heading">
<img src="library.svg" alt="yourLibraryIcon" class="invert" />
<h2 class="fs-small">Your Library</h2>
</div>
<div class="footer">
<div>
<a href="https://www.spotify.com/jp/legal/"><span>Legal</span></a>
</div>
<div>
<a href="https://www.spotify.com/jp/privacy/"
><span>Privacy Center</span></a
>
</div>
<div>
<a href="https://www.spotify.com/jp/legal/privacy-policy/"
><span>Privacy Policy</span></a
>
</div>
<div>
<a href="https: //www.spotify.com/jp/legal/cookies-policy/"
><span>Cookies</span></a
>
</div>
<div>
<a href="https://www.spotify.com/jp/legal/privacy-policy/#s3"
><span>About Ads</span></a
>
</div>
<div>
<a href="https://www. spotify.com/jp/accessibility/"
><span>Accessibility</span></a
>
</div>
</div>
</div>
</div>
<div class="right bg-black">
<div class="main m-1 p-1 bg-gray rounded m-ln">
<div class="header">
<div class="nav">
<button>
<img src="arrow.svg" alt="" class="invert-semi" />
</button>
<button>
<img src="arrow.svg" alt="" class="invert-semi flipX" />
</button>
</div>
<div class="buttons">
<button>Sign Up</button>
<button>Login</button>
</div>
</div>
<div class="playlist-container">
<h1>Spotify Playlists</h1>
</div>
</div>
</div>
</div>
</body>
</html>