-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>1.3 Nachbearbeitungsauftrag - JavaScript und DOM</h1>
<div class="main">
<section class="section1">
<h2>Aufgabe 1 - Umdrehen</h2>
<p>Bitte ein Wort eingeben</p>
<form>
String: <input type="string" name="a" id="a" /><br />
<button class="button1" onclick="reverse();return false">
Umdrehen
</button>
</form>
<h3>Result</h3>
<p id="result1"></p>
</section>
<section class="section2">
<h2>Aufgabe 2 - Schaltjahr</h2>
<p>Geben Sie ein Jahr ein</p>
<form>
Year: <input type="number" name="b" id="b" /><br />
<button class="button2" onclick="schaltjahr(); return false">
Check
</button>
</form>
<h3>Result</h3>
<p id="result2"></p>
</section>
<section class="section3">
<h2>Aufgabe 3 - Pangramm</h2>
<p>Bitte geben Sie einen Satz ein</p>
<form>
String: <input type="string" name="c" id="c" /><br />
<button class="button3" onclick="istPangramm(); return false">
Submit
</button>
</form>
<h3>Result</h3>
<p id="result3"></p>
</section>
</div>
<script src="./aufgabe1.js"></script>
<script src="./aufgabe2.js"></script>
<script src="./aufgabe3.js"></script>
</body>
</html>