-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.html
35 lines (32 loc) · 1.18 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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<title>Accessible to do list</title>
</head>
<body>
<div class="container">
<div class="content">
<h1 tabindex="-1" id="heading">To do list</h1>
<form action="index.html" method="post" id="to_do_form">
<label for="todo" id="main_label">Add a new task to your list (required)</label>
<div>
<input type="text" class="task_input" aria-describedby="example" id="todo" required>
<input type="submit" value="Add" class="add_task">
</div>
<div class="example" id="example">
Example: Feed The Chicken
</div>
</form>
<ul id="list" class="list">
</ul>
<div role="status" aria-live="polite" id="sc_feedback" class="sc_feedback">
<!-- Area to be pronounceable by screen readers -->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>