-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SoundCloud Music Search</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<header>
<h1>SoundCloud Music Search</h1>
<!-- <h1>Rilly Ah-som Soundz</h1> -->
</header>
<section class="player">
<audio id="music-player" controls="controls" src=""></audio>
<div id="playing">Now playing: </div>
</section>
<hr>
<section class="search">
<div id="search-form">
<input type="text" name="search" id="search_field" placeholder="Search for Artist" value="">
<input type="submit" id="submit_button" value="Search">
</div>
</section>
<hr>
<section id="results"></section>
</div>
<script src="main.js"></script>
</body>
</html>