-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.php
More file actions
31 lines (25 loc) · 921 Bytes
/
html.php
File metadata and controls
31 lines (25 loc) · 921 Bytes
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
<!-- Grundstuktur von HTML -->
<html>
<head>
</head>
<body>
<h1>Überschrift</h1>
<br />
<form action="html.php" method="post">
<input type="text" name="name" />
<input type="password" name="password" />
<select name="select">
<option value="0">Beschreibung des Werts</option>
</select>
<textarea>Dieser Text steht schon drin.</textarea>
<input type="checkbox" name="checkboxen[]" value="1" />
<input type="checkbox" name="checkboxen[]" value="2" />
<input type="checkbox" name="checkboxen[]" value="3" />
<input type="radio" checked name="radio-group" value="1" id="radio-1" /><label for="radio-1">Beschreibung</label>
<input type="radio" name="radio-group" value="2" />
<?php echo '<input type="radio" name="radio-group" value="3" />';?>
<input type="submit" value="Text auf dem Button" />
<button type="submit">Text auf dem Button</button>
</form>
</body>
</html>