-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.58 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
<html>
<head>
<link rel="stylesheet" href="./style.css"></style>
<script src="./script.js"></script>
</head>
<body>
<nav id="navbar">
<ul>
<li id="item-1">
Home
</li>
<li id="item-2">
About Us
</li>
<li id="item-3">
Contact
</li>
</ul>
</nav>
<main>
<h1 style="display: flex; justify-content: center;">Custom Checkboxen</h1>
<div id="container">
<div id="checkboxen">
<div id="checkbox-1" onclick="clicked('box-1')">
<input id="box-1" type="checkbox" onclick="clicked('box-1')">
<label for="box-1" id="text-1">Zeiteinheit</label>
</div>
<div id="checkbox-2" onclick="clicked('box-2')">
<input id="box-2" type="checkbox" onclick="clicked('box-2')">
<label for="box-2" id="text-2">Leistungseinheit</label>
</div>
<div id="checkbox-3" onclick="clicked('box-3')">
<input id="box-3" type="checkbox" onclick="clicked('box-3')">
<label for="box-3" id="text-3">
Beides
</label>
</div>
</div>
</div>
</main>
</body>
</html>