-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 902 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="todoapp.png" type="image/x-icon" />
<link rel="stylesheet" href="css/style.css" />
<script type="module" src="js/App.js" defer></script>
<title>Todo List</title>
</head>
<body>
<div class="input-group mx-auto mt-5" data-input app-size>
<input type="text" class="form-control" app-input />
<button class="btn btn-danger" app-add>add task</button>
</div>
<ul class="list-group mx-auto mt-2" data-tasks app-size></ul>
</body>
</html>