-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (49 loc) · 1.38 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
<!DOCTYPE HTML>
<html lang="de">
<head>
<title>Quiz Challenge</title>
<!--Skripte-->
<script type="text/javascript" src="assets/js/test.js"></script>
<script type="text/javascript" src="assets/js/array_test.js"></script>
<script type="text/javascript" src="assets/js/show_date.js"></script>
<!--Stylesheets-->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<div id="heading">
<h1>Quiz Challenge</h1>
</div>
<div id="slogan">
<h1>Das aus SysProg bekannte Spiel als Webanwendung!</h1>
</div>
<br><br>
<div id="main">
<div id="mainStyle">
<form name="formular">
<input type="text" name="text" size="30" placeholder="Spielername"><br>
<input type="button" value="Spieler adden" onclick="addPlayer()">
</form>
</div>
</div>
<div id="catalogs">
<div id="catalogsStyle">
<h1>Catalogs</h1>
<div id="katalogAussehen">
<p>Katalog einfach</p>
<p>Katalog SysProg</p>
</div>
</div>
</div>
<div id="highscore">
<div id="highscoreStyle">
<h1>Highscore</h1>
<div id="playerNameStyle">
<ul id="liste"></ul>
</div>
</div>
</div>
<!-- <br><br>
<input type="button" value="Drop Text!" onclick="dropText()">
<input type="button" value="Datum anzeigen" onclick="showDate()"> -->
</body>
</html>