-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.28 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.28 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Todo List</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
i{
cursor: pointer;
}
::placeholder{
color: #ffac6f !important;
font-family:"DejaVu Sans";
font-style: italic;
}
</style>
</head>
<body style="background-color:bisque;">
<div class="container">
<h1 class="center-align" style="color:darkblue;font-weight:bolder;text-shadow:1px 1px darkblue;font-family:'Lato',sans-serif;">To-Do List</h1>
<input id="inp" class="center-align" placeholder="Enter the Item">
<button class="btn-large" style="display:block;margin:0 auto;" id="btn">Add Todo</button><br><br><br>
<ul class="collection" style="list-style-type: none" id="result"></ul>
</div>
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="myTodoList.js"></script>
</body>
</html>