-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfinal-project.html
More file actions
31 lines (31 loc) · 1.25 KB
/
final-project.html
File metadata and controls
31 lines (31 loc) · 1.25 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- <link rel="stylesheet" href="css/style.css"> -->
<title>Intro to Javascript</title>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<section id="wrapper" class="form-group col-sm-8 col-sm-offset-2">
<div class="row">
<div class="col-sm-6">
<label for="todo">New Todo Item</label>
<input type="text" class="todo form-control" id="todo-input" name="todo">
</div>
<div class="col-sm-6">
<label for="todo-time">How many hours will this take?</label>
<input type="text" class="todo form-control" id="todo-time-input" name="todo-time">
</div>
<button id="add-btn" class="btn btn-success" onclick="makeTodo()">Add New Todo</button>
</div>
</section>
<ul id="todo-list" class="col-sm-10 col-sm-offset-1"></ul>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/final-script.js"></script>
</body>
</html>