Learn how to create forms using the <form> tag.
Back to HomeForms allow users to input and submit data. A basic form looks like this:
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<input type="submit" value="Submit">
</form>
Create a form with a **text input for a name** and a **submit button**.