-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="icons/Bern.png" />
<title>DigiCheck</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #187ee5;
color: white;
}
</style>
</head>
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="/Profil/index.html">Profil</a>
<a href="Umfrage/index.html">Umfrage</a>
<a href="Auswertung/index2.html">Auswertung</a>
</div>
<!--
<div class="container">
<div class="sidebar">
<button onclick="window.location.href='index.html'" class="button"><img src="icons/home.png" style="padding-right: 2px;" width="30px" height="30px">Home</img></button>
<button class="button"><img src="icons/user.png" style="padding-right: 2px;" width="30px" height="30px">Profil</img></button>
<button onclick="window.location.href='Umfrage/index.html'"class="button"><img src="icons/clipboard.png" style="padding-right: 2px;" width="30px" height="30px">Umfrage</img></button>
<button onclick="window.location.href='Auswertung/index2.html'" class="button"><img src="icons/chart.png" style="padding-right: 2px;" width="30px" height="30px">Auswertung</img></button>
</div></header> -->
<body>
<div
style="
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
padding: 10%;
font-size: 150%;
"
>
<h1>Willkommen bei DigiCheck!</h1>
<p>
Teste dein Wissen im Umgang mit digitalen Hilfstmitteln und schau, wo du
stehst.
<a href="Umfrage/index.html" style="color: #187ee5">Hier</a> gehts zu
den Fragen.
</p>
<p>
Fülle alle Fragen wahrheitsgetreu aus, um ein möglichst genaues Feedback
zu erhalten.
</p>
</div>
</body>
</html>