-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 756 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 756 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
</head>
<body>
<div class="main bg-primary d-flex align-items-center justify-content-center">
<div class="box w-50 bg-white p-3">
<input type="text" class="w-100 p-2 border border-0 outline-0 d-block" autofocus
placeholder="write-something-hear">
<ul id="to-do-box" class="ps-0 mt-3">
</ul>
</div>
</div>
</body>
</html>