-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.03 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
36
37
38
39
<!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="styles.css" />
<title>PLP To Do List</title>
</head>
<body>
<section class="container">
<div class="heading">
<img
src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/756881/laptop.svg"
alt="image"
class="heading_img"
/>
<h1 class="heading_title">Welcome to PLP To-Do List</h1>
</div>
<form class="form">
<div>
<label for="todo" class="form_label">~ Today I need to ~</label>
<input
type="text"
class="form_input"
id="todo"
name="to-do"
size="30"
required
/>
<button class="button"><span>Submit</span></button>
</div>
</form>
<div>
<ul class="toDoList"></ul>
</div>
</section>
<script src="script.js"></script>
</body>
</html>