-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
29 lines (25 loc) · 903 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
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Week 3: Jasmine</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/main.css" />
<script data-main="js/app" src="js/vendors/require.min.js"></script>
</head>
<body>
<div class="container">
<div class=""
<section class="col-md-6">
<form id="addSongForm" class="form-inline">
<label for="song">Song</label>
<input class="form-control" type="text" id="song" />
<button class="btn" type="submit" id="addSong">Add</button>
</form>
</section>
<ul class="list-unstyled col-md-6" id="currentPlaylist"></ul>
</div>
</body>
</html>