-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
38 lines (37 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="main.js" defer></script>
<link rel="stylesheet" href="style.css"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>MyTunes Music Search</title>
</head>
<body>
<header>
<h1>Aziza's Record Store</h1>
<div id="playback">
<audio id="audio-preview" controls src="">
</audio>
<div class="current-song">Currently Playing:</div>
</div>
</header>
<div id="container">
<div id="search">
<form id="search-form" action="">
<label for="term">Search for Music</label>
<input id="search-box" type="text" name="term" required>
<button id="search-button">
<i class="fa fa-search"></i>
</button>
<!-- when the button is in the form, it knows it is a submit button -->
</form>
</div>
<div id="results"></div>
</div>
</body>
</html>