-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodos2.html
More file actions
30 lines (27 loc) · 1.24 KB
/
todos2.html
File metadata and controls
30 lines (27 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<script type="text/javascript" src="./assets/js/lib/jquery-3.5.0.min.js"></script>
<link rel="stylesheet" href="./assets/css/todos2.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<h1><span class="styling">TODO</span>List</h1>
<div class="input_div">
<input type="text" class="input" placeholder="What Do You Want to Do...">
<button class="addButton"><i class="fa fa-plus"></i> </button>
</div>
<div class="container">
<!-- <div class="item">
<input type="text" class="item_input" disabled>
<button class="editButton">Edit</button>
<button class="removeButton">Remove</button>
</div> -->
</div>
<script type="text/javascript" src="./assets/js/todos3.js"></script>
</body>
</html>