JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>form Attribut</title>
</head>
<body>
<form id="formular" action="formAttribut.html" method="get">
<fieldset>
<legend>Persönliche Angaben</legend>
<label for="name">Name</label>
<input id="name" type="name" placeholder="Max Mustermann"> <br> <br>
<label for="adresse">Adresse</label>
<input id="adresse" type="name" placeholder=""> <br><br>
<label for="plz">Postleitzahl</label>
<input id="plz" type="name" placeholder="">
</fieldset> <br>
<button type="submit">Absenden!</button>
</form>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolore reprehenderit esse quisquam accusamus odit necessitatibus assumenda dolorem officia veritatis quaerat illo facere maxime, itaque commodi ducimus eligendi laboriosam quam cum!</p>
<label for="passwort">Passwort:</label>
<input id="passwort" type="password" name="passwort" form="formular">
</body>
</html>