Html Course


Usually a HTML Form is created to enable people who visit a webpage to enter information or select from a set of predefined options.


HTML Form

HTML forms are used to pass data to a server, to be processed by a programming language (like PHP, ASP, NodeJS). HTML forms can also be used with script languages, like JavaScript.
The <form> tag is used to create a HTML form.

<form action='#'>
 ... form elements
</form>

The <form> tag uses the following attributes:
A form can contain input elements like text fields, checkboxes, submit buttons; and select lists, textarea, fieldset, and more.
All form elements are added inside <form> ... </form> tag.

Form - Input Elements

The input element is the most important form element. It is used to select user information, and can vary in many ways, depending on the type attribute.

Attributes of the <input /> tag:


Text field

Defines an one-line input field that a user can enter text into (the default width of a text field is 20 characters).

<input type='text' name='a_name' />
How it looks in a browser:

Password field

type='password' creates a text input element, but the characters are masked (shown as asterisks or circles).
<input type='password' name='a_name' />
How it looks in a browser:

Checkbox

Checkboxes let a user select one or more options of a limited number of choices.
<input type='checkbox' name='a_name' value='value' />
How it looks in a browser:  

Radio

Radio buttons let a user select only one of a limited number of choices, which have the same 'name' attribute.
<input type='radio' name='a_name' value='value' />
How it looks in a browser:  

File

Allows users to submit external files to the server. It is used for file uploads.
- This field is accompanied by a 'Browse' button, used to choose which document to be transferred to server.
<input type='file' name='a_name' />
How it looks in a browser:

Simple button

type='button' defines a clickable button, that does not do anything. The button type is most often used to activate a JavaScript function when a user clicks on the button.
<input type='button' value='Click here' />
How it looks in a browser:

Submit button

A submit button is used to send form data to a server. The data is sent to the page specified in the form's 'action' attribute.
<input type='submit' value='Send' />
How it looks in a browser:  

Image for the Submit button

type='image' defines an image as a submit button. If a type='image' button is pressed, the form is submitted. The 'src' and 'alt' attribute are required.
<input type='image' src='image.jpg' alt='Submit' />
How it looks in a browser:  

Reset button

A reset button resets all form fields to their initial values.
<input type='reset' value='Reset' />
How it looks in a browser:  

Hidden

A hidden field is not visible for the user. Hidden controls can be used to pass some data to the server that the user cannot see or alter.
<input type='hidden' name='a_name' value='hidden_value' />

Other form elements

Textarea field

The <textarea> tag defines a multi-line text input control which can hold an unlimited number of characters.
The size of a textarea can be specified by the cols and rows attributes, or through CSS, with height and width properties.
<textarea name='a_name' cols='20' rows='3'> Text content </textarea>
How it looks in a browser:  

Attributes for textarea:


Select list

The <select> </select> tag is used to create a select list (drop-down list).
This element should contain one ore more <option>...</option> tags. This tag defines an option within the select item.
<select name='a_name'>
 <option value='val1'>Option 1</option>
 <option value='val2'>Option 2</option>
 <option value='val3'>Option 3</option>
 ...
</select>
- If the 'value' attribute is not added in the <option> tag, its content will be the value that is sent to the server.
How it looks in a browser:  

Attributes for <select>:

Attributes for <option>:


<label> tag

The <label> tag defines a label for an input element.
Each label element is associated with one form control. The label element may contain the form control, or it may use the 'for' attribute to identify the control by its 'id' value.
- Syntax:
<label>Text <input type='the_type' name='a_name' /></label>

Or with the 'for' attribute:
<label for='input_id'>Text</label>
<input type='the_type' name='a_name' id='input_id' />
If the user clicks on the text within the label element, it toggles the control.
Example:
<form action='script.php' method='post'>
 <label>Text: <input type='text' name='text1' /></label><br>
 <label for='idc'>Check:</label> <input type='checkbox' name='a_name' id='idc' /><br>
 <input type='submit' value='Submit' />
</form>
This code will display:




<fieldset> and <legend> tags

The <fieldset> tag is used to logically group together elements in a form. It draws a box around the related form elements.
The <legend> tag defines a caption for the fieldset element.
Example:
<form action='script.php' method='post'>
 <fieldset> <legend style='margin-left:90%;'>Log in</legend>
 <label>Name: <input type='text' name='user' /></label><br />
 <label>Password: <input type='password' name='pass' size='16' /></label>
 </fieldset>
 <input type='submit' value='Submit' />
</form>
This code will display:
Log in

<optgroup> tag

The <optgroup> tag is used to group together related options in a select list. It uses two attributes: Example:
<form action='script.php' method='post'>
 <p>What is your favorite fruit or vegetable?</p>
 <select name='fv' size='6'>
 <optgroup label='Fruits'>
 <option>Apple</option>
 <option>Banana</option>
 </optgroup>
 <optgroup label='Vegetables'>
 <option>Cabbage</option>
 <option>Tomato</option>
 </optgroup>
 </select>
</form>
Results of the code above in a browser:

What is your favorite fruit or vegetable?

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
Forms and Input

Last accessed pages

  1. Creating Gradients (951)
  2. Arrays in ActionScript 3 (3082)
  3. Select in two MySQL tables (5329)
  4. JavaScript trim, rtrim and ltrim (13044)
  5. ActionScript 3 - Change MovieClip Color (8944)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (327)
  2. Read Excel file data in PHP - PhpExcelReader (122)
  3. The Four Agreements (97)
  4. PHP Unzipper - Extract Zip, Rar Archives (94)
  5. The Mastery of Love (87)
Chat
Chat or leave a message for the other users
Full screenInchide