This commit is contained in:
Andy
2020-02-14 11:05:52 +01:00
parent c0d4b380e0
commit 1d3d2dfff1
3 changed files with 29 additions and 3 deletions
+27
View File
@@ -0,0 +1,27 @@
<!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>