Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

Input Form Attribute

This chapter delineates the various attributes related to the form* functionality within the HTML <input> element.

The form Attribute

The form attribute of the <input> element specifies the form it belongs to, using the id of the corresponding <form> element.

Example

An input field that resides external to the HTML form structure but remains associated with the form.

<form action=”/action_page.php” id=”form1″>
  <label for=”fname”>First name:</label>
  <input type=”text” id=”fname” name=”fname”><br><br>
  <input type=”submit” value=”Submit”>
</form>

<label for=”lname”>Last name:</label>
<input type=”text” id=”lname” name=”lname” form=”form1″>

The formaction Attribute

The formaction attribute on an input element specifies the URL for processing form data upon submission, overriding the action attribute of the <form> element. It is compatible with submit and image input types.

Example

An HTML form featuring two submit buttons, each triggering distinct actions.

<form action=”/action_page.php”>
  <label for=”fname”>First name:</label>
  <input type=”text” id=”fname” name=”fname”><br><br>
  <label for=”lname”>Last name:</label>
  <input type=”text” id=”lname” name=”lname”><br><br>
  <input type=”submit” value=”Submit”>
  <input type=”submit” formaction=”/action_page2.php” value=”Submit as Admin”>
</form>