-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
75 lines (68 loc) · 2.01 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en-GB">
<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" />
<title>Dodo Todo</title>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./style.css" />
<meta name="description" content="Dodo Todo app" />
<style>
@import url("https://fonts.googleapis.com/css?family=McLaren&display=swap");
</style>
</head>
<body>
<div class="dodologo-container">
<figure class="dodologo">
<img src="Images/Grey Dodo Bird Illustration.svg" alt="Dodo logo" />
</figure>
</div>
<header class="header">
<h1>Dodo Todo</h1>
<h2>Make your todos extinct</h2>
</header>
<main class="main">
<form class="add-todo-form" id="add-todo">
<input
type="text"
class="input-box"
name="description"
value=""
aria-label="type todo field"
/>
<button class="add-button" type="submit" id="add-todo-button">
Add
</button>
</form>
<section class="todo-container" id="todo-container">
<!-- <ul class="todo-list">
<li><span>Bake bread</span></li>
<li><span>Buy milk</span></li>
<li><span>Clean room</span></li>
</ul> -->
<!-- Stretch Goal -->
<!-- <ul class="todo-alive">
</ul>
<ul class="todo-extinct">
</ul> -->
</section>
</main>
<footer class="footer">
<p>
Let's prevent further animal extinction. Use
<a
class=""
aria-label="Link to Ecosia"
href="https://www.ecosia.org/?c=en"
target="_blank"
rel="noreferrer"
>Ecosia</a
>, the search engine that plants trees.
</p>
<p>Built by Fiasco, 2019</p>
</footer>
</body>
<script type="text/javascript" src="./logic.js"></script>
<script type="text/javascript" src="./dom.js"></script>
</html>