This repository was archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptik.html
72 lines (71 loc) · 2.33 KB
/
Optik.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Mechanik</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
</head>
<body>
<h1 style="color:#FD0505;" align="center" class="Was ist gegeben?">Was ist gegeben?</h1>
<p align="center" style="font-size:35px;">Trage bitte alle gegebenen Daten ein.</p>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Vorher</th>
<th>Beim Vorgang</th>
<th>Nachher</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Typ<select>
<option value="-">-</option>
<option value="Energie">Energie</option></td>
<td>Typ<select>
<option value="Energie">Energie</option></td>
<td>Typ<select>
<option value="Energie">Energie</option></td>
</tr>
<tr>
<th scope="row">2</th>
<td>Art<select>
<option value="Bewegung">Bewegung</option></td>
<td>Art<select>
<option value="Bewegung">Bewegung</option></td>
<td>Art<select>
<option value="Bewegung">Bewegung</option></td>
</tr>
<tr>
<th scope="row">3</th>
<td>
<form>
<label for="Wert">Eingabe:
<input id="Wert" name="Wert">
</label></form></td>
<td>
<form>
<label for="Wert">Eingabe:
<input id="Wert" name="Wert">
</label></form></td>
<td>
<form>
<label for="Wert">Eingabe:
<input id="Wert" name="Wert">
</label></form></td>
</tr>
<tr>
<th scope="row">4</th>
<td>Einheit<select>
<option value="m/s">m/s</option></td>
<td>Einheit<select>
<option value="m/s">m/s</option></td>
<td>Einheit<select>
<option value="m/s">m/s</option></td>
</tr>
</tbody>
</table>
<button type="button" class="btn btn-warning"><a class="whitetext" href="gesuchtoptik.html">Weiter geht's</a></button>
</body>
</html>