-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (89 loc) · 4.32 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
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
106
107
108
109
110
111
<!doctype html>
<html class="no-js" lang="" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<title>Webquiz</title>
<meta name="description" content="Beleg für das Modul Internettechnologien 1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<!-- Google Fonts -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Newsreader">
<script src="https://kit.fontawesome.com/70d2df2807.js" crossorigin="anonymous"></script>
<meta name="theme-color" content="#374785">
<!-- kaTeX -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.13.9/dist/katex.min.css"
integrity="sha384-r/BYDnh2ViiCwqZt5VJVWuADDic3NnnTIEOv4hOh05nSfB6tjWpKmn1kUHOVkMXc" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.9/dist/katex.min.js"
integrity="sha384-zDIgORxjImEWftZXZpWLs2l57fMX9B3yWFPN5Ecabe211Hm5ZG/OIz2b07DYPUcH" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.9/dist/contrib/auto-render.min.js"
integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
</head>
<body>
<header class="title">
<h1>Webquiz</h1>
</header>
<main class="flex-container">
<div class="menu" id="taskSelection">
<nav>
<ul id="teil-mathe"><i class="fas fa-calculator"></i> Mathematik</ul>
<ul id="teil-internettechnologien"><i class="fas fa-network-wired"></i> Internettechnologien</ul>
<ul id="teil-allgemein"><i class="fas fa-university"></i> Allgemein</ul>
<ul id="server"><i class="fas fa-server"></i> Remote</ul>
</nav>
</div>
<aside>
<nav id="tasklist">
</nav>
</aside>
<article id="mainArea">
<section id="tasks">
<p>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,
no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,
no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
</section>
<section>
<div id="buttons">
<button id="button1" content="Test1">Test1</button>
<button id="button2" content="Test2">Test2</button>
<button id="button3" content="Test3">Test3</button>
<button id="button4" content="Test4">Test4</button>
</div>
<div id="result">
<button id="next" content="Nächste Frage >">Nächste Frage ></button>
<button id="end" content="Quiz beenden">Quiz beenden</button>
</div>
<div id="endQuiz">
<button id="restart" content="Quiz neustarten">Quiz neustarten</button>
</div>
</section>
</article>
<footer>
<p> Dies ist der Beleg für das Modul Internettechnologien 1 im Sommersemester 2021 von <a href="https://github.com/eshadepunkt">Martin Freiberger (s80411)</a> und <a href="https://github.com/Sumarbrander">Leander Vasco Schwarze (s80476)</a> .</p>
</footer>
</main>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/Model/Model.js"></script>
<script src="js/View/View.js"></script>
<script src="js/Presenter/Presenter.js"></script>
</body>
</html>