-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (71 loc) · 3.2 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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<meta charset="utf-8">
<script src="https://kit.fontawesome.com/7da600887b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<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=Montserrat:wght@300&display=swap" rel="stylesheet">
<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=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="left-icon">
<ul>
<li><i class="fas fa-fish fa-2x"></i></li>
</ul>
</div>
<div class="right-icon">
<ul>
<li><i class="fas fa-user-circle fa-2x"></i></li>
<li><i class="fas fa-bars fa-2x"></i></li>
</ul>
</div>
</div>
<div class="hero">
<div class="hero-content">
<h2 class="text large">A language that transcends all boundaries</h2>
<h3 class="text hinfo"> Music touches the soul in ways no other thing can, bridging the barriers between us. </h3>
<div id="topbtn">
<button>SIGN UP</button>
</div>
</div>
<div class="image">
<img src="phone.png" alt="music player on phone" width="450">
</div>
</div>
<div class="main">
<h3 class="mid">Discover Playlists</h3>
<div class="cards">
<iframe class="playlist" src="https://open.spotify.com/embed/playlist/4u7cMpi4oLe9hZKVzYpsTb" width="25%" height="380" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
<iframe class="playlist" src="https://open.spotify.com/embed/playlist/6GZtwLpswnvI3C8gBSMokR" width="25%" height="380" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
<iframe class="playlist" src="https://open.spotify.com/embed/playlist/0b82kVpofuEcEUt4ZQSre2" width="25%" height="380" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
</div>
</div>
<div class="content-info">
<ul>
<div class="info">
<li>A mix of soul, bossa nova, and jazz</li>
<li>A little psychedelic, indie, and alt </li>
<li>Bedroom pop and indie</li>
</div>
</ul>
</div>
<div class="bot-sect">
<p class="quote">Music washes away from the soul the dust of everyday life.</p>
<text class="name">-Berthold Auerbach</text> <br>
</div>
<div class="cta-bg">
<div class="cta">
<text class="bottom" id="tag">Music For The Better</text>
<p class="bottom">Find out how streaming music can bring the world closer together</p>
<button class="button">LEARN MORE</button>
</div>
</div>
<div class="footer">Ehspresso 2023</div>
</body>
</html>