<!DOCTYPE html>
<html>
<head>
  <title>Formular</title>
</head>
<body>
  <h2>Formular</h2>
  <form action="submit.php" method="post">
    <label for="name">Name:</label><br>
    <input type="text" id="name" name="name" required><br><br>
    <label for="email">E-Mail:</label><br>
    <input type="email" id="email" name="email" required><br><br>
    <input type="submit" value="Absenden">
  </form>
</body>
</html>