-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 745 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 745 Bytes
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
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>Todo App</title>
<link
href="https://jsprimer.net/use-case/todoapp/final/final/index.css"
rel="stylesheet"
/>
</head>
<body>
<div class="todoapp">
<form id="js-form">
<input
id="js-form-input"
class="new-todo"
type="text"
placeholder="What need to be done?"
autocomplete="off"
/>
</form>
<div id="js-todo-list" class="todo-list">
<!-- Dynamic List -->
</div>
<footer class="footer">
<span id="js-todo-count">Todoアイテムの数: 0</span>
</footer>
</div>
<script type="module" src="./index.js"></script>
</body>
</html>