form + fieldset + legend

PHOTO EMBED

Fri Aug 12 2022 13:44:25 GMT+0000 (Coordinated Universal Time)

Saved by @fastoch #html

<!DOCTYPE html>
<html>
<body>

<h2>Grouping Form Data with Fieldset</h2>

<p>The fieldset element is used to group related data in a form, and the legend element defines a caption for the fieldset element.</p>

<form action="/action_page.php">
  <fieldset>
    <legend>Personalia:</legend>
    <label for="fname">First name:</label><br>
    <input type="text" id="fname" name="fname" value="John"><br>
    <label for="lname">Last name:</label><br>
    <input type="text" id="lname" name="lname" value="Doe"><br><br>
    <input type="submit" value="Submit">
  </fieldset>
</form>

</body>
</html>
content_copyCOPY

https://www.w3schools.com/html/tryit.asp?filename=tryhtml_form_legend