-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1011 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do-List</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="firstColorSection"></div>
<div class="wrapper">
<nav id="linkNavbar">
<a href="LawMandatorySites/GDPR.html" target="_blank">
Impressum for German Law
</a>
</nav>
<label for="inserter">Your own To-Do-List in the browser.</label>
<div class="adderForToDo">
<div class="adderSign">
<div class="leftBar"></div>
<div class="rightBar"></div>
</div>
<textarea
name="inserter"
class="input"
cols="30"
rows="5"
placeholder="Type something into that to create a To-Do-Text"
></textarea>
</div>
<div class="list"></div>
</div>
<script src="js/main.js"></script>
</body>
</html>