-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproiect.html
30 lines (30 loc) · 933 Bytes
/
proiect.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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task List</title>
<link rel="stylesheet" href="proiect.css">
</head>
<body>
<header>
<h1>To-Do List</h1>
</header>
<section>
<form id="task-form">
<label for="task-name">Task name:</label>
<input type="text" id="task-name" name="task-name" required>
<label for="task-priority">Priority:</label>
<select id="task-priority" name="task-priority">
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
<button type="submit">Add task</button>
</form>
<ul id="task-list"></ul>
</section>
<script src="proiect.js"></script>
</body>
</html>