27 lines
789 B
HTML
27 lines
789 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Die HTML Struktur in Webseiten">
|
|
<title>HTML Struktur</title>
|
|
<link rel="stylesheet" href="../css/code.css">
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>Formulare in Webseiten</h1>
|
|
<form method="POST" action="formmailer.pl">
|
|
<fieldset id="kontakt">
|
|
<legend>Persönliche Daten</legend>
|
|
<label for="vorname">Vorname: *</label>
|
|
<input type="text" id="vorname" name="vorname" placeholder="Ihr Vorname" required autofocus tabindex="1">
|
|
<input type="submit" value="Ab die Post">
|
|
</fieldset>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |