-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 2.72 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
<!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="stylesheet" href="musicstore.css" />
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<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=Dancing+Script:wght@700&family=Mooli&family=Onest&family=PT+Serif:ital@1&family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>Melody-Music Store</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="left">
<a
href="file:///C:/Users/illus/Documents/Music%20Landing%20Page/musicstore.html"
>Melody</a
>
</div>
<div class="search_bar">
<input
type="text"
class="search"
placeholder="what do you want to listen to?"
/>
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</nav>
</header>
<main>
<div class="home">
<ul>
<li class="one"><a href="#">Home</a></li>
<li class="two"><a href="#">Top Mixes</a></li>
<li class="three"><a href="#">Top Albums</a></li>
</ul>
</div>
<div class="images">
<div class="nights">
<img class="img1" src="The Nights-poster.png" alt="" />
<h1>The Nights</h1>
<p1>Avicci</p1>
<audio controls>
<source
src="Avicii_-_The_Nights_(Jesusful.com).mp3"
type="audio/mpeg"
class="a1"
/>
</audio>
</div>
<div class="forever">
<img class="img2" src="Can we kiss forever-poster.png" alt="" />
<h1>Can We Kiss Forever?</h1>
<p1>Kina, Adriana Proenza</p1>
<audio controls class="a2">
<source
src="Can We Kiss Forever - SamWep.mp3"
type="audio/mpeg"
class="a2"
/>
</audio>
</div>
</div>
</main>
</body>
</html>