-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (26 loc) · 915 Bytes
/
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">
<link href="https://fonts.googleapis.com/css2?family=Hind&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=" crossorigin="anonymous" />
<link rel="stylesheet" href="./style.css">
<title>Todo List</title>
</head>
<body>
<header>
<h1>Todo List App</h1>
</header>
<form>
<input type="text" class="todoInput" placeholder="Todo">
<button class="todoButton" type="submit">
<i class="fas fa-plus-circle"></i>
</button>
</form>
<div class="todoItems">
<ul class="todoList"></ul>
</div>
<script src="./app.js"></script>
</body>
</html>