-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths.html
69 lines (67 loc) · 3.03 KB
/
s.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="s.css">
<link rel="stylesheet" href="util.css">
</head>
<body>
<!-- <img src="logo.svg" alt=""> -->
<div class="container flex ">
<div class="left bg-black">
<div class="home bg-grey rounded m-1 p-1">
<div class="logo" ><img class="invert" src="logo.svg" alt="logo"></div>
<ul>
<li><img class="invert" src="home.svg" alt="home">Home</li>
<li><img class="invert" src="search.svg" alt="search">Search</li>
</ul>
</div>
<div class="library bg-grey rounded m-1 p-1">
<div class="heading">
<img class="invert" src="library.svg">
<h2>
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-grey rounded p-1">
<div class="header">
<div class="nav">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="#ffffff" fill="none">
<path d="M15 6C15 6 9.00001 10.4189 9 12C8.99999 13.5812 15 18 15 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="#ffffff" fill="none">
<path d="M9.00005 6C9.00005 6 15 10.4189 15 12C15 13.5812 9 18 9 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="buttons">
<button>SignUp</button>
<button>Login</button>
</div>
</div>
<div class="spotify">
<h1>Spotify Playlists</h1>
<div class="cardcontainer">
<div class="card">
<img src="https://i.scdn.co/image/ab67706f0000000249a1ed33d2ca64e6a5d0e550" alt="">
<h2>Happy Hits</h2>
<p>Hits to boost your modd and fill with you happiness !</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>