forked from microsoft/Web-Dev-For-Beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 976 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 976 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>To-Do List</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<section class="container">
<div class="heading">
<img class="heading__img" src="images/lapii.jpg" alt="Image of a laptop" />
<h1 class="heading__title">To-Do List</h1>
</div>
<form class="form">
<label class="form__label" for="todo">Enter your to-do item:</label>
<input class="form__input" type="text" id="todo" name="to-do" size="30" required />
<button class="button"><span>Submit</span></button>
</form>
<div>
<ul class="toDoList">
<!-- To-do list items will be added dynamically here -->
</ul>
</div>
</section>
<script src="script.js"></script>
</body>
</html>