forked from Groverio/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 821 Bytes
/
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
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Todo-List</h1>
<div class="js-add-grid">
<input type="text" placeholder="Share Your Thoughts" class="js-name-input">
<input type="date" class="js-date-input">
<input type="time" class="js-time-input">
<button class="js-add-button" onclick="addTodo();">
<img src="assets/add-icon.png" alt="Add" width="16" height="16"> Add
</button>
</div>
<div class="js-add-html js-add-grid"></div>
</div>
<script src="script.js"></script>
</body>
</html>