-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 3.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>To-do List App</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script|Poiret+One" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Bootstrap 4 CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Popper JS & jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<h1 class="toDoBanner display-3">List'O-Matic <i class="fas fa-feather"></i></h1>
<div class="container">
<div class="row">
<!-- CARD BEGINS --><div class="card ">
<div class = "card-header">
<h1 class="display-5">To-Do List</h1>
<form id="todoForm">
<div class="input-group mx-auto">
<input class="form-control" id="todoInput" type="text" placeholder="Enter an activity...">
<button class="btn btn-primary" id="addTodo">Add</button>
</div>
</form>
</div>
<!-- LIST ITEMS --><ol class="list-group-item" id="todoList">
<li class="list-group-item">Go to the store<button class="btn btn-danger btn-sm float-right delete"><i class="fa fa-trash" aria-hidden="true" id="trashcan"></i></button></li>
<li class="list-group-item">Walk the dog<button class="btn btn-danger btn-sm float-right delete"><i class="fa fa-trash" aria-hidden="true" id="trashcan"></i></button></li>
<li class="list-group-item">Turn in term paper<button class="btn btn-danger btn-sm float-right delete"><i class="fa fa-trash" aria-hidden="true" id="trashcan"></i></button></li>
</ol>
<!-- CARD ENDS --></div>
<!-- NEXT FEATURE -->
<!--<button class="btn btn-warning btn-block text-white font-weight-bold">New List</button>-->
<!--<button class="btn btn-warning btn-block">Add a New List</button>-->
</div>
</div>
<script type = "text/javascript" src="js/todolist.js"></script>
</body>
</html>