-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTo-Do-Liste.html
More file actions
105 lines (89 loc) · 4.74 KB
/
To-Do-Liste.html
File metadata and controls
105 lines (89 loc) · 4.74 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="de" >
<head>
<title>To-Do-List</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Nick Truttmann">
<meta name="description" content="Dies ist eine To-Do-List und Liste der zu erledigenden Dinge.">
<link rel="stylesheet" type="text/css" href="stylesheet.css"> <!--Einbettung des Stylsheets-->
<script src="https://kit.fontawesome.com/047f4e48cc.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script> <!--Do I need this?-->
<script src="scripts.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png"> <!--Favicons-->
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#44f163">
<link rel="shortcut icon" href="/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#90ee90">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#90ee90">
</head>
<body class="Home">
<header >
<div class="Titel"> <h1>Welcome to the Website of N.T. <a class="faviHome" target="_self" href="https://woodtree37.github.io"><img src="/favicons/favicon.ico" alt="faviHome"> </a> </h1> </div>
</header>
<!--Navigation menue-->
<nav>
<div class="navbar">
<button class="dropbtn Lighttheme" id="dark" onclick="Drop()"><i class="fas fa-bars"></i></button>
<div class="dropdown-content" id="myDropdown">
<a class="nav Lighttheme" id="dark" href="index.html" > Home</a>
<a class="nav Lighttheme" id="dark" href="Contribution.html" > Contribute</a>
<a class="nav Lighttheme" id="dark" href="To-Do-Liste.html"> To-Do-List</a>
</div>
</div>
<!--This only work when loaded with a server!!-->
<div class="navbig" >
<a class="nav Lighttheme" id="dark" href="index.html" > Home</a>
<a class="nav Lighttheme" id="dark" href="Contribution.html" > Contribute</a>
<a class="nav Lighttheme" id="dark" href="To-Do-Liste.html" > To-Do-List</a>
</div>
</nav>
<aside>
<div class="Darkmode Lighttheme" id="dark">
<span>Darkmode:
<label class="switchD">
<input type="checkbox" id="darkcheck" onclick="changeCookieDark()">
<span class="slider round"></span>
</label>
</span>
</div>
<script>
var dark = getCookie("darkmode");
if(dark == "on"){
Darkmode();
document.getElementById("darkcheck").checked = true;
}
</script>
</aside>
<main>
<h3>Already added things: <i class="fas fa-thumbs-up"></i> </h3>
<ul>
<li>Improved Menu/Sidebar. Mobile compatible. </i></li>
<li>Make navigation menue formobile acessible through one button.</li>
<li>Improve/Add 404 page </li>
<li>Make NavBar imported to make Changes more easy.</li>
<li>Farbverläufe</li>
<li>Better favicon</li>
<li>Personalization - Sort of done</li>
<li><a style="color: black; text-decoration: none;" href="https://woodtree37.github.io/Hidden.html">Eastereggs</a> </li>
<br>
</ul>
<h3>Things to be added:</h3>
<ul>
<li>Add more Content</li>
<li>Shorten loadingtimes</li>
</ul>
<h4>Last Update: 23.07.2022</h4>
<h2>Disclaimer: </h2>
<div>Das Ziel dieser Website ist es, allem Schülern des Gymnasiums einen gleichen Zugang zu Lehrmaterialien zu ermöglichen.
Die alten Prüfungen sollen bei der Prüfungsvorbereitung helfen und nicht zum Auswendiglernen genutzt werden!
Diverses Lernmaterial kann und soll zu einem Nachhaltigeren Lerneffekt führen.
Jegliche Dokumente dürfen verwerndet, aber nicht weiter verteilt werden.
Wünsche und Anregungen sind direkt an Nick Truttmann unter <a href="mailto:nick.truttmann@icloud.com">nick.truttmann@icloud.com zu richten.
</div>
</main>
</body>
</html>