-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (88 loc) · 3 KB
/
index.html
File metadata and controls
136 lines (88 loc) · 3 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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">
<title>Music Arc - Home</title>
<link rel="stylesheet" href="./css/style.css">
<!-- including googlefonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<script src="./assets/js/landingpage.js"></script>
<!-- including icons -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
</head>
<body id="top" bgcolor="white">
<header>
<div class="container">
<a href="index.html" class="logo">
<img src="./images/logo.png" alt="Pod logo" id="logo">
</a>
<span><a href="index.html" class="title">
<pre> Music Arc</pre>
</a>
</span>
<nav class="navbar" data-navbar>
<ul class="navbar-list">
<li>
<a href="index.html" class="navbar-link">Home</a>
</li>
<li>
<a href="player.html" class="navbar-link">Player</a>
</li>
<li>
<a href="aboutus.html" class="navbar-link">About US</a>
</li>
<li>
<a href="faq.html" class="navbar-link">FAQ</a>
</li>
<li>
<a href ="player.html" class ="title"><button class="btn-primary">Start Listening</button></a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<article class="container">
<section class="hero" id="home">
<div class="hero-content">
<h1 class="h1 hero-title">The most powerful audio streamer for devices</h1>
<a href ="player.html" class="title"><button class="btn-primary">Start Listening</button></a>
</div>
<figure class="hero-banner"></figure>
</section>
<section class="overview" id="overview">
<div class="overview-card">
<figure class="overview-banner">
<img src="./images/overview-banner.png" alt="overview banner">
</figure>
<div class="overview-content">
<h2 class="h2 overview-title">Enjoy your music everywhere!</h2>
<p class="overview-text">
Each time a digital asset is purchased or sold, Sequoir donates a percentage of the fees back into the
development
</p>
<ul class="overview-list">
<li class="overview-item">
<ion-icon name="wifi"></ion-icon>
<span>Works exactly like original <strong>SPOTIFY 😎😎</strong></span>
</li>
<li class="overview-item">
<ion-icon name="musical-notes"></ion-icon>
<span><strong>Most Responsive</strong> Music Player out in the market </span>
</li>
<li class="overview-item">
<ion-icon name="star"></ion-icon>
<span><strong>Ordered Queue</strong> for your favorite songs</span>
</li>
</ul>
</div>
</div>
</section>
</article>
</main>
</body>
</html>