-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
70 lines (62 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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">
<!-- bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- main css -->
<link rel="stylesheet" href="css/main.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<!-- font awesome -->
<link rel="stylesheet" href="css/all.css">
<title>Grocery Item</title>
<style>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col mx-auto col-md-8 mt-3 text-center">
<div class="alert text-capitalize feedback">
write value for item
</div>
<!-- form -->
<form id="itemForm" class="my-3">
<h3 class="text-capitalize mb-4">to do list</h3>
<div class="input-group">
<input type="text" class="form-control text-capitalize" id="itemInput" placeholder="name...">
<div class="input-group-append">
<button class="btn btn-green text-capitalize" type="submit">add item</button>
</div>
</div>
</form>
<div class="item-container">
<!-- end of form -->
<div class="item-list my-5">
<!-- single item -->
<!-- <div class="item my-3">
<h5 class="item-name text-capitalize">laundry</h5>
<div class="item-icons">
<a href="#" class="complete-item mx-2 item-icon"><i class="far fa-check-circle"></i></a>
<a href="#" class="edit-item mx-2 item-icon"><i class="far fa-edit"></i></a>
<a href="#" class="delete-item item-icon"><i class="far fa-times-circle"></i></a>
</div>
</div> -->
<!-- end of single item -->
</div>
<button type="button" class="btn btn-green my-3 text-capitalize" id="clear-list">clear items</button>
</div>
</div>
</div>
</div>
<!-- jquery -->
<script src="js/jquery-3.3.1.min.js"></script>
<!-- bootstrap js -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- script js -->
<script src="js/app.js"></script>
</body>
</html>