-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.07 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple ToDo List | Team 5</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="./js/scripts.js" defer></script>
<link rel="stylesheet" href="./workshop-simple-todolist/css/style.css">
</head>
<body>
<div class="m-4 border-4">
<form class="row g-3">
<div class="col-auto">
<input type="text" name="newToDo" minlength="1" class="form-control" id="taskInput" placeholder="Task" required>
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary mb-3" id="submitButton" disabled>Add ToDo</button>
</div>
</form>
<ul class="list-group border-4" id="taskList"></ul>
</div>
</body>
</html>