-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (28 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous">
<link rel="shortcut icon" href="https://cdn0.iconfinder.com/data/icons/flat-security-icons/512/tick-blue.png" type="image/x-icon" />
<title>DYSLEXIA-FRIENDLY TODO</title>
<meta content="This is a web based to do app built with TDD methods">
<link rel="stylesheet" href="./normalise.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>To Do App</h1>
<div id="todo-container" class="todo">
<ul class="todo__ul">
</ul>
</div>
<form id="add-todo" class="add-form">
<input type="text" class="add-form__input" required name="description" value="" aria-label="input area for adding a task to your do to list">
<input type="submit" class="add-form__button" name="" value="+" aria-label="submit new to do">
</form>
</body>
<script type="text/javascript" src="./logic.js"></script>
<script type="text/javascript" src="./dom.js"></script>
</html>