-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.44 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<script src="script/jquery.min.js"></script>
<script src="script/main.js"></script>
<title>iTunes API</title>
</head>
<body>
<div class="search">
<input type="text">
<div class="image"><img src="img/search.png" alt=""></div>
</div>
<section class="container">
<div class="navigation">
<div class="itemAll"><b>Artist</b></div>
<div class="itemAll"><b>Track</b></div>
<div class="itemAll"><b>Collection</b></div>
<div class="itemAll"><b>Genre</b></div>
</div>
<div class="items">
<div class='item template'>
<div class='wraper'>
<img src='' id="trackImg">
<div class='container'>
<div class='itemAll artist'></div>
<div class='itemAll track'></div>
<div class='itemAll collectionName'></div>
<div class='itemAll genre'></div>
</div>
<div class='btnShow plus'>+</div>
<div class='btnShow minus'>-</div>
</div>
<div class='hide'>
<div class='wraper'>
<div class='left'>
<h1><img src='img/note.png' alt=''></h1>
<div class='collection'><b>Collection: </b></div>
<div class='count'><b>Track Count: </b></div>
<div class='collectionPrice'><b>Price: </b></div>
</div>
<div class='right'>
<div class='duration'><b></b></div>
<div class='price'><b></b></div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>