-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.html
89 lines (88 loc) · 2.65 KB
/
code.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Code</title>
<link href="style.css" rel="stylesheet"/>
<link
href="/v2/favicons/apple-touch-icon.png"
rel="apple-touch-icon"
sizes="180x180"
/>
<link
href="/v2/favicons/favicon-32x32.png"
rel="icon"
sizes="32x32"
type="image/png"
/>
<link
href="/v2/favicons/favicon-16x16.png"
rel="icon"
sizes="16x16"
type="image/png"
/>
<link href="/v2/favicons/site.webmanifest" rel="manifest"/>
<link
color="#5bbad5"
href="/v2/favicons/safari-pinned-tab.svg"
rel="mask-icon"
/>
<link href="/v2/favicons/favicon.ico" rel="shortcut icon"/>
<meta content="#2b5797" name="msapplication-TileColor"/>
<meta
content="/v2/favicons/browserconfig.xml"
name="msapplication-config"
/>
<meta content="#ffffff" name="theme-color"/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="welcome.html">Einführung</a></li>
<li><a href="idee.html">Die Idee</a></li>
<li><a href="code.html">Der Code</a></li>
<li><a href="data.html">Datenschutzerklärung</a></li>
</ul>
</nav>
<h1>Unser Code:</h1>
</header>
<div class="outer-container">
<div class="inner-container">
<ul>
<li>
Wenn man auf unser Projekt kommt, kann man zwischen 5 Möglichkeiten
wählen
</li>
<ul>
<li>Home</li>
<li>Die Idee</li>
<li>Der Code</li>
<li>V1</li>
<li>V2</li>
</ul>
<li>Wenn V2 geöffnet wird</li>
<ul>
<li>Wird die Story gestartet, kann man nur auf Start drücken</li>
</ul>
<li>Wenn Start gedrückt wird, wird die erste Frage geladen</li>
<ul>
<li>
Richtige Antwort gewählt, dann wird die nächste Frage geladen
</li>
<li>
Falsche Antwort gewählt, dann wird die Falsch-Seite geladen, die
ein Zurück zur Oma setzt
</li>
</ul>
<li>
Wenn Frage zehn richtig beantwortet wird, wird das Passwort
zurückgesetzt, welches das Kuchenrezept lädt
</li>
</ul>
</div>
</div>
</body>
</html>