-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Quando&display=swap" rel="stylesheet" />
<title>SoundWave</title>
<link href="./style.css" rel="stylesheet" />
</head>
<body class="container full-height-grow">
<header class="header">
<div class="leftCorner">
<a href="index.html">
<img src="./images/logo.png" alt="logo" />
<span class="logo__name"> SoundWave</span>
</a>
</div>
<ul class="rightCorner">
<a href="./join.html" class="signUp">Sign Up</a>
<a href="./discover.html" class="discover"> Discover</a>
</ul>
</header>
<section class="home-body">
<div class="home-left">
<div class="lady-img"></div>
</div>
<div class="home-right">
<p>Feel the Music</p>
<p>Stream 20 over thousand songs with one click</p>
<p>
<a class="btn">Join Now</a>
</p>
</div>
</section>
<div class="homeCircularBox1"></div>
<div class="homeCircularBox2"></div>
<div class="homeCircularBox3"></div>
</body>
</html>