-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (86 loc) · 3.11 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
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>SoundSpot</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div id="wrapper">
<div id="content">
<header>
<a href="#"><img src="images/logo.svg"/></a>
</header>
<section class="search">
<form>
<div class="flexRow">
<input
type="search"
id="searchQuery"
name="searchQuery"
placeholder="Search by keyword here..."
/>
<select name="searchType" id="searchType">
<option value="track">Song</option>
<option value="album">Album</option>
<option value="artist">Artist</option>
<option value="playlist">Playlist</option>
</select>
</div>
<div class="flexRow is-centered is-submit">
<button class="submitSearch">
Search <img src="images/arrow_right.svg" />
</button>
</div>
</form>
</section>
<section class="searchResults is-hidden">
<div class="sectionHead">
<h3>Results</h3>
<div class="uiSwitcher">
<button class="switch grid is-active">
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="4" height="4" />
<rect x="6" width="4" height="4" />
<rect x="12" width="4" height="4" />
<rect y="6" width="4" height="4" />
<rect x="6" y="6" width="4" height="4" />
<rect x="12" y="6" width="4" height="4" />
<rect y="12" width="4" height="4" />
<rect x="6" y="12" width="4" height="4" />
<rect x="12" y="12" width="4" height="4" />
</svg>
</button>
<button class="switch list">
<svg
width="18"
height="16"
viewBox="0 0 18 16"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="18" height="3" />
<path d="M0 6.5H18V9.5H0V6.5Z" />
<rect y="13" width="18" height="3" />
</svg>
</button>
</div>
</div>
<!--`is-list` => هو ده إسم الكلاس الآخر!-->
<ul class="musicList is-grid ">
</ul>
</section>
</div>
</div>
<script src='./js/helpers.js'></script>
<script src='./js/main.js'></script>
</body>
</html>