-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.39 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.39 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
<!DOCTYPE html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="todo-list"></div>
<div id="form-div">
<form>
<label for="todo-list-item">Todo List Item:
<input type="text" id="todo-list-item"/>
</label><br/>
<button type="button" id="add-item-button" class="btn btn-success"><span class="glyphicon glyphicon-plus-sign"></span>Add Item</button>
<button id="remove-item-button" class="btn btn-danger"><span class="glyphicon glyphicon-minus-sign"></span>Remove Item(s)</button>
</form>
</div>
<br/><br/>
<button id="ajax-button" class="btn btn-primary">Run AJAX</button><br/>
<button id="populate-list-button" class="btn btn-info"><span class="glyphicon glyphicon-list-alt"></span>AJAX Items to List</button>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>