-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.3 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
<html>
<head>
<title>Updated Music Project</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Pacifico|Permanent+Marker|Rock+Salt" rel="stylesheet">
</head>
<body>
<div class="searchArea">
<h1>My Updated Music Project</h1>
<form class="form-inline">
<!--DO NOT MODIFY THE ID OR ONCLICK ATTRIBUTES IN THIS FORM-->
<div class="form-group">
<input type="text" class="form-control" id="artist" placeholder="Artist Name" onkeydown="if (event.keyCode == 13) { musicController.getMusic(); return false;}"
/>
<button type="button" class="btn btn-primary" id="get-music-button" onclick="musicController.getMusic()">Get Music</button>
</div>
</form>
</div>
<div class="container-fluid">
<div class="row">
<div id="foundMusic" class="col-xs-8 bigArea"> </div>
<div id="playlistMusic" class="col-xs-4 smallArea"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="my-tunes-service.js"></script>
<script src="controller.js"></script>
</body>
</html>