kontakt-lisa-ohne-js-nur-php.php
Quell Code
<!DOCTYPE html>
<html>
<head>
<title>Kontakt</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<main>
<div class="wrapper">
<div class="content">
<h1>Kontakt</h1>
<p>
E-Mail: alnamla@gmx.de<br/>
Telefon:
</p>
</div>
<form id="kontakt" method="post" action="lisaemailoho.php">
<label for="name">Name:
<input type="text" id="name" name="von" placeholder="Vor- und Nachname" required>
</label><br/>
<label for="mail">E-Mail:
<input type="email" id="mail" name="mail" placeholder="Ihre E-Mail Adresse" required>
</label><br/>
<label for="betreff">Betreff:
<input type="text" id="betreff" name="betreff" required>
</label><br/>
<label for="text">Nachricht:
<textarea rows="20" cols="50" id="nachricht" name="nachricht" placeholder="Ihre Nachricht..." required></textarea>
</label><br/>
<input id="submit" type="submit" value="Senden">
</form>
<div id="response"></div>
</div>
</main>
</body>
</html>