forked from bendodson/itunes-artwork-finder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (53 loc) · 2.33 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="../css/style.css" />
<title>iTunes Artwork Finder</title>
</head>
<body>
<div id="wrapper">
<h1> iTunes Artwork Finder</h1>
<section id="itunes-artwork-finder">
<header>
Select Type of Entity, followed by your Search Term(s)
<form action="" method="get" accept-charset="utf-8" id="iTunesSearch">
<select name="entity" id="entity">
<option value="album">Album</option>
<option value="idAlbum">Apple ID (Album)</option>
<option value="tvSeason">TV Show</option>
<option value="movie">Movie</option>
<option value="id">Apple ID (Movie)</option>
<option value="audiobook">Audiobook</option>
<option value="podcast">Podcast</option>
<option value="musicVideo">Music Video (may not work)</option>
<option value="ebook">iBook</option>
<option value="software">App (iPhone or Universal)</option>
<option value="iPadSoftware">App (iPad)</option>
<option value="macSoftware">App (macOS)</option>
<option value="shortFilm">Short Film</option>
</select>
<input type="text" class="text" name="query" id="query" />
<br />
<br />
Select Country of Release
<br />
<select name="country" id="country">
<option value='us'>United States of America</option>
<option value='gb'>United Kingdom</option>
</select>
<br />
<br />
<input type="submit" class="submit" value="Get the artwork" />
</form>
</header>
<div id="results"></div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="itunes.js"></script>
<footer>
<p>footer</p>
</footer>
</div>
</body>
</html>