-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MVC - Todo App</title>
<meta name="author" content="Luca Reichmann">
<meta name="description" content="Example project using the mvc design pattern. No external libraries or frameworks, just pure Javascript.">
<meta name="keywords" content="mvc, object-oriented, javascript, todo, todo app, js">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./img/favicon.svg" />
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<a><img src="" alt=""></a>
</header>
<div class="content">
<h1>MVC Todo App</h1>
<div class="inputSection">
<input placeholder="type your todo" type="text" id="inputSection">
<a id="addTodo" class="button">Add</a>
</div>
<!-- Todo items will be placed here -->
<div id="todoItems"></div>
<a id="clearAll">Clear everything</a>
</div>
<footer>
<ul>
<li><a href="https://luca-reichmann.de/impressum/">Impressum</a></li>
<li><a href="https://luca-reichmann.de/datenschutzerklaerung/">Datenschutzerklärung</a></li>
</ul>
</footer>
<script src="dist/main.js"></script>
</body>
</html>