1The action attribute specifies where to send the form-data when a form is submitted.
1<!--Answer from W3 Schools-->
2<form action="/action_page.php">
3 <label for="username">Username:</label>
4 <input type="text" id="username" name="username" required>
5 <input type="submit">
6</form>