-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 812 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (22 loc) · 812 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="scripts/todolist.js"></script>
</head>
<body>
<div class="container mt-5" id="todo">
<h4 class="p-2">Darāmo lietu saraksts</h4>
<div class="input-group mb-3">
<input type="text" id="taskInput" class="form-control" placeholder="Enter a task" aria-label="Enter a task">
<div class="input-group-append">
<button class="btn btn-primary" type="button" onclick="addTask()">Pievienot uzdevumu</button>
</div>
</div>
<ul id="taskList" class="list-group"></ul>
</div>
</body>
</html>