<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
div {
margin-bottom: 10px;
}
label {
display: inline-block;
width: 120px;
}
</style>
</head>
<body>
<form>
<fieldset style="background:#e1eff2;">
<legend style="padding:20px 0; font-size:20px;">Personenbezogene Information:</legend>
<div><label>Name:</label><input type="text"></div>
<div><label> E-Mail:</label><input type="text"></div>
<div><label>Geburtsdatum:</label><input type="text"></div>
<div><label>Geburtsort:</label><input type="text"></div>
</fieldset>
</form>
</body>
</html>