-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="description"
content="Discover Jazzam, the music streaming app that lets you choose your favorite genres and listen to personalized playlists. Enjoy a unique music experience with Jazzam and explore new musical horizons. Try it now!">
<link rel="shortcut icon" href="/assets/favicon_32.png" type="image/png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.cdnfonts.com/css/imprima" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="src/styles/landing.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script type="module" src="/src/main.ts" defer></script>
<title>Jazzam</title>
</head>
<body>
<div id="bloc-page">
<header>
<a href="index.html">
<h1>Jazzam</h1>
</a>
<label for="search"></label>
<input type="text" id="search" placeholder="Search for artists, groups" />
</header>
<main>
<div id="container-page">
<section class="section-wrapper">
<h2>Enjoy the playlist</h2>
<div id="container-playlist"></div>
<a id="about" href="./about.html">
License creative commons (CC BY-NC-SA 4.0) - About artists
</a>
</section>
<section class="section-wrapper">
<h2>Select a musical style</h2>
<div id="container-genre"></div>
</section>
</div>
</main>
</div>
</body>
</html>