forked from elijj/parse-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 860 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 860 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Parse intro</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<!-- Include parse library here -->
</head>
<body>
<div class="container">
<!-- Here is where you should build your form.
You can make it look nicer with bootstrap classes like "form-input" -->
</div>
<div class="container">
<ol id="list">
</ol>
</div>
</body>
<script type="text/javascript" src="js/music.js"></script>
</html>