-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 826 Bytes
/
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
<!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">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css"/>
<link rel='stylesheet' href='main.css'>
<title>iTunes Search</title>
<script src="jquery-3.3.1.min.js" defer></script>
<script src="main.js" defer></script>
</head>
<body>
<div id="title">
<h1>Pass The Aux</h1>
</div>
<div class="search">
<input type="text" id="search-field" placeholder="Search for song or artist...">
<button id="search-button">Search</button>
</div>
<div class=container-1>
<div id='search-results'>
</div>
</div>
</body>
</html>