-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (26 loc) · 910 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
26
27
28
29
30
31
<html lang="en"><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todos</title>
<script defer="" src="./script.js"></script>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<main>
<form class="todoForm" id="form">
<input type="text" name="todo" id="todo" placeholder="Todo">
<input type="submit" value="Save todo">
</form>
<hr>
<div class="todoContainer">
<!-- <article class="todo" data-id="1676568461748">
<div>
<div class="dot"></div>
<p>Google</p>
</div>
<button onclick="editTodo(1676568461748)">Edit</button>
</article> -->
</div>
</main>
</body></html>