Horje
What is HTML <form> Tag

The <form> tag is used to create an HTML form for user input.

The <form> element can contain one or more of the following form elements:

  • <input>
  • <textarea>
  • <button>
  • <select>
  • <option>
  • <optgroup>
  • <fieldset>
  • <label>
  • <output>

How to create HTML <form> Tag

An HTML form with two input fields and one submit button
index.html
Example: HTML
<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">
</form>

Output should be:

How to create HTML <form> Tag

Which browser will support for HTML <form> Tag

Which browser will support for HTML <form> Tag

Attributes for HTML <form> Tag

Attribute Value Description
accept-charset character_set Specifies the character encodings that are to be used for the form submission
action URL Specifies where to send the form-data when a form is submitted
autocomplete on
off
Specifies whether a form should have autocomplete on or off
enctype application/x-www-form-urlencoded
multipart/form-data
text/plain
Specifies how the form-data should be encoded when submitting it to the server (only for method="post")
method get
post
Specifies the HTTP method to use when sending form-data
name text Specifies the name of a form
novalidate novalidate Specifies that the form should not be validated when submitted
rel external
help
license
next
nofollow
noopener
noreferrer
opener
prev
search
Specifies the relationship between a linked resource and the current document
target _blank
_self
_parent
_top
Specifies where to display the response that is received after submitting the form

How to use An HTML form with checkboxes

See the Example
index.html
Example: HTML
<form action="/action_page.php" method="get">
  <input type="checkbox" name="vehicle1" value="Bike">
  <label for="vehicle1"> I have a bike</label><br>
  <input type="checkbox" name="vehicle2" value="Car">
  <label for="vehicle2"> I have a car</label><br>
  <input type="checkbox" name="vehicle3" value="Boat" checked>
  <label for="vehicle3"> I have a boat</label><br><br>
  <input type="submit" value="Submit">
</form>

Output should be:

How to use An HTML form with checkboxes

How to use An HTML form with radiobuttons

See the Example
index.html
Example: HTML
<form action="/action_page.php" method="get">
  <input type="radio" id="html" name="fav_language" value="HTML">
  <label for="html">HTML</label><br>
  <input type="radio" id="css" name="fav_language" value="CSS" checked="checked">
  <label for="css">CSS</label><br>
  <input type="radio" id="javascript" name="fav_language" value="JavaScript">
  <label for="javascript">JavaScript</label><br><br>
  <input type="submit" value="Submit">
</form>

Output should be:

How to use An HTML form with radiobuttons

How to set Default CSS Settings for HTML <form> Tag

Most browsers will display the <form> element with the following default values
index.html
Example: HTML
<style>
form { 
  display: block;
  margin-top: 0em;
}
</style>

Output should be:

How to set Default CSS Settings for HTML <form> Tag

How to add HTML <form> accept-charset Attribute

A form with an accept-charset attribute.

Definition and Usage

The accept-charset attribute specifies the character encodings that are to be used for the form submission. 


Browser Support

Syntax

<form accept-charset="character_set">

Attribute Values

Value Description
character_set A space-separated list of one or more character encodings that are to be used for the form submission.

Common values:

  • UTF-8 - Character encoding for Unicode
  • ISO-8859-1 - Character encoding for the Latin alphabet

In theory, any character encoding can be used, but no browser understands all of them. The more widely a character encoding is used, the better the chance that a browser will understand it.

To view all available character encodings, go to our Character sets reference.

index.html
Example: HTML
<form action="/action_page.php" accept-charset="utf-8">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="submit" value="Submit">
</form> 

Output should be:

How to add HTML <form> accept-charset Attribute

How to add HTML <form> action Attribute

On submit, send the form-data to a file named "action_page.php" (to process the input):

Definition and Usage

The action attribute specifies where to send the form-data when a form is submitted.


Browser Support

Syntax

<form action="URL">

Attribute Values

Value Description
URL Where to send the form-data when the form is submitted.

Possible values:

  • An absolute URL - points to another web site (like action="http://www.example.com/example.htm")
  • A relative URL - points to a file within a web site (like action="example.htm")
index.html
Example: HTML
<form action="/action_page.php" method="get">
  <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">
</form> 

Output should be:

How to add HTML <form> action Attribute

How to add HTML <form> autocomplete Attribute

A form with autocomplete on.

Definition and Usage

The autocomplete attribute specifies whether a form should have autocomplete on or off.

When autocomplete is on, the browser automatically complete values based on values that the user has entered before.

Tip: It is possible to have autocomplete "on" for the form, and "off" for specific input fields, or vice versa.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Syntax

<form autocomplete="on|off">

Attribute Values

Value Description
on Default. The browser will automatically complete values based on values that the user has entered before
off The user must enter a value into each field for every use. The browser does not automatically complete entries
index.html
Example: HTML
<form action="/action_page.php" method="get" autocomplete="on">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="email">Email:</label>
  <input type="text" id="email" name="email"><br><br>
  <input type="submit">
</form> 

Output should be:

How to add HTML <form> autocomplete Attribute

How to add HTML <form> autocomplete on Attribute

on Default. The browser will automatically complete values based on values that the user has entered before
index.html
Example: HTML
<form action="/action_page.php" method="get" autocomplete="on">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="email">Email:</label>
  <input type="text" id="email" name="email"><br><br>
  <input type="submit">
</form>

Output should be:

How to add HTML <form> autocomplete on Attribute

How to add HTML <form> autocomplete off Attribute

off The user must enter a value into each field for every use. The browser does not automatically complete entries
index.html
Example: HTML
<form action="/action_page.php" method="get" autocomplete="off">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="email">Email:</label>
  <input type="text" id="email" name="email"><br><br>
  <input type="submit">
</form>

Output should be:

How to add HTML <form> autocomplete off Attribute

How to add HTML <form> enctype Attribute

Send form-data encoded as "multipart/form-data".

Definition and Usage

The enctype attribute specifies how the form-data should be encoded when submitting it to the server.

Note: The enctype attribute can be used only if method="post".


Browser Support

Syntax

<form enctype="value">

Attribute Values

Value Description
application/x-www-form-urlencoded Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values)
multipart/form-data  This value is necessary if the user will upload a file through the form
text/plain Sends data without any encoding at all. Not recommended
index.html
Example: HTML
<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <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">
</form>

Output should be:

How to add HTML <form> enctype Attribute

How to add HTML <form> enctype application/x-www-form-urlencoded Attribute

application/x-www-form-urlencoded Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values)
index.html
Example: HTML
<form action="/action_page_binary.asp" method="post" enctype="application/x-www-form-urlencoded">
  <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">
</form>

Output should be:

How to add HTML <form> enctype application/x-www-form-urlencoded Attribute

How to add HTML <form> enctype multipart/form-data Attribute

multipart/form-data  This value is necessary if the user will upload a file through the form
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form enctype attribute</h1>

<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> enctype multipart/form-data Attribute

How to add HTML <form> enctype text/plain Attribute

text/plain Sends data without any encoding at all. Not recommended
index.html
Example: HTML
<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <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">
</form>

Output should be:

How to add HTML <form> enctype text/plain Attribute

How to add HTML <form> method Attribute

Submit a form using the "get" method.


Definition and Usage

The method attribute specifies how to send form-data (the form-data is sent to the page specified in the action attribute).

The form-data can be sent as URL variables (with method="get") or as HTTP post transaction (with method="post").

Notes on GET:

Notes on POST:


Browser Support

Syntax

<form method="get|post">

Attribute Values

Value Description
get Default. Appends the form-data to the URL in name/value pairs: URL?name=value&name=value
post Sends the form-data as an HTTP post transaction
index.html
Example: HTML
<form action="/action_page.php" method="get" target="_blank">
  <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">
</form>

Output should be:

How to add HTML <form> method Attribute

How to add HTML <form> method get Attribute

get Default. Appends the form-data to the URL in name/value pairs: URL?name=value&name=value
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form method="get" attribute</h1>

<form action="/action_page.php" method="get" target="_blank">
  <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">
</form>

<p>Click on the submit button, and the input will be sent to a page on the server called "action_page.php".</p>

</body>
</html>

Output should be:

How to add HTML <form> method get Attribute

How to add HTML <form> method post Attribute

post Sends the form-data as an HTTP post transaction
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form method="get" attribute</h1>

<form action="/action_page.php" method="post" target="_blank">
  <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">
</form>

<p>Click on the submit button, and the input will be sent to a page on the server called "action_page.php".</p>

</body>
</html>

Output should be:

 How to add HTML <form> method post Attribute

How to add HTML <form> name Attribute

An HTML form with a name attribute.

Definition and Usage

The name attribute specifies the name of a form.

The name attribute is used to reference elements in a JavaScript, or to reference form data after a form is submitted.


Browser Support

Syntax

<form name="text">

Attribute Values

Value Description
text Specifies the name of the form
index.html
Example: HTML
<form action="/action_page.php" method="get" name="myForm">
  <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="button" onclick="formSubmit()" value="Send form data!">
</form> 

Output should be:

How to add HTML <form> name Attribute

How to add HTML <form> novalidate Attribute

Indicate that the form is not to be validated on submit.

Definition and Usage

The novalidate attribute is a boolean attribute.

When present, it specifies that the form-data (input) should not be validated when submitted.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Syntax

<form novalidate>

index.html
Example: HTML
<form action="/action_page.php" novalidate>
  <label for="email">Enter your email:</label>
  <input type="email" id="email" name="email"><br><br>
  <input type="submit">
</form> 

Output should be:

How to add HTML <form> novalidate Attribute

How to add HTML <form> rel Attribute

Definition and Usage

The rel attribute specifies the relationship between the current document and the linked document.


Browser Support

Syntax

<form rel="value">

Attribute Values

Value Description
external Specifies that the referenced document is not a part of the current site
help Links to a help document
license Links to copyright information for the document
next The next document in a selection
nofollow Links to an unendorsed document, like a paid link.
("nofollow" is used by Google, to specify that the Google search spider should not follow that link)
noopener  
noreferrer Specifies that the browser should not send a HTTP referrer header if the user follows the hyperlink
opener  
prev The previous document in a selection
search Links to a search tool for the document
index.html
Example: HTML
<!DOCTYPE html> 
<html> 
  
<body> 
    <h2 style="color: green">Horje</h2> 
    <h2>HTML form Attribute</h2> 
  
    <b>This will avoid information passed to the post page </b> 
  
    <!-- It avoids passing the referrer information 
        to target website by removing the referral  
        info from the HTTP header. 
        It is safe to use -->
    <form rel="noreferrer" action="mypage.php"> 
        <input type="search" placeholder="search here" /> 
        <input type="button" value="search" /> 
    </form> 
</body> 
  
</html>

Output should be:

How to add HTML <form> rel Attribute

How to add HTML <form> rel external Attribute

external Specifies that the referenced document is not a part of the current site
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<b>This will avoid information passed to the post page </b>
<!-- It avoids passing the referrer information
to target website by removing the referral
info from the HTTP header.
It is safe to use -->
<form rel="external" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel external Attribute

How to add HTML <form> rel help Attribute

help Links to a help document
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="help" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel help Attribute

How to add HTML <form> rel license Attribute

license Links to copyright information for the document
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="license" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel license Attribute

How to add HTML <form> rel next Attribute

next The next document in a selection
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="next" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel next Attribute

How to add HTML <form> rel nofollow Attribute

nofollow Links to an unendorsed document, like a paid link.
("nofollow" is used by Google, to specify that the Google search spider should not follow that link)
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="nofollow" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel nofollow Attribute

How to add HTML <form> rel noopener Attribute

noopener will avoid robots.

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="noopener" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel noopener Attribute

How to add HTML <form> rel noreferrer Attribute

noreferrer Specifies that the browser should not send a HTTP referrer header if the user follows the hyperlink
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="noreferrer" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel noreferrer Attribute

How to add HTML <form> rel opener Attribute

opener will appear that robots won't open the page.

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="opener" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel opener Attribute

How to add HTML <form> rel prev Attribute

prev The previous document in a selection
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="prev" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel prev Attribute

How to add HTML <form> rel search Attribute

search Links to a search tool for the document
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<h2 style="color: green">Horje</h2>
<h2>HTML form Attribute</h2>
<form rel="search" action="mypage.php">
<input type="search" placeholder="search here" />
<input type="button" value="search" />
</form>
</body>
</html>

Output should be:

How to add HTML <form> rel search Attribute

How to add HTML <form> target Attribute

Display the response received in a new window or tab.

Definition and Usage

The target attribute specifies a name or a keyword that indicates where to display the response that is received after submitting the form.

The target attribute defines a name of, or keyword for, a browsing context (e.g. tab, window, or inline frame).


Browser Support

Syntax

<form target="_blank|_self|_parent|_top|framename">

Attribute Values

Value Description
_blank The response is displayed in a new window or tab
_self The response is displayed in the same frame (this is default)
_parent The response is displayed in the parent frame
_top The response is displayed in the full body of the window
framename The response is displayed in a named iframe
index.html
Example: HTML
<form action="/action_page.php" method="get" target="_blank">
  <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">
</form> 

Output should be:

How to add HTML <form> target Attribute

How to add HTML <form> target _blank Attribute

_blank The response is displayed in a new window or tab
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form target attribute</h1>

<form action="/action_page.php" method="get" target="_blank">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> target _blank Attribute

How to add HTML <form> target _self Attribute

_self The response is displayed in the same frame (this is default)
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form target attribute</h1>

<form action="/action_page.php" method="get" target="_self">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> target _self Attribute

How to add HTML <form> target _parent Attribute

_parent The response is displayed in the parent frame
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form target attribute</h1>

<form action="/action_page.php" method="get" target="_parent">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> target _parent Attribute

How to add HTML <form> target _top Attribute

_top The response is displayed in the full body of the window
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form target attribute</h1>

<form action="/action_page.php" method="get" target="_top">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> target _top Attribute

How to add HTML <form> target framename Attribute

framename The response is displayed in a named iframe
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The form target attribute</h1>

<form action="/action_page.php" method="get" target="framename">
  <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">
</form>

</body>
</html>

Output should be:

How to add HTML <form> target framename Attribute





Related Articles
What is HTML <!--...--> Tag HTML Tag
What is HTML <!DOCTYPE> Declaration HTML Tag
What is HTML Elements and Doctypes HTML Tag
What is HTML <a> Tag HTML Tag
What is HTML <abbr> Tag HTML Tag
What is HTML <acronym> Tag HTML Tag
What is HTML <address> Tag HTML Tag
What is HTML <applet> Tag HTML Tag
What is HTML <area> Tag HTML Tag
What is HTML <article> Tag HTML Tag
What is HTML <aside> Tag HTML Tag
What is HTML <audio> Tag HTML Tag
What is HTML <b> Tag HTML Tag
What is HTML <base> Tag HTML Tag
What is HTML <basefont> Tag HTML Tag
What is HTML <bdi> Tag HTML Tag
What is HTML <bdo> Tag HTML Tag
What is HTML <big> Tag HTML Tag
What is HTML <blockquote> Tag HTML Tag
What is HTML <body> Tag HTML Tag
What is HTML <br> Tag HTML Tag
What is HTML <button> Tag HTML Tag
What is HTML <canvas> Tag HTML Tag
What is HTML <caption> Tag HTML Tag
What is HTML <center> Tag HTML Tag
What is HTML <cite> Tag HTML Tag
What is HTML <code> Tag HTML Tag
What is HTML <col> Tag HTML Tag
How to create HTML <colgroup> Tag HTML Tag
What is HTML <data> Tag HTML Tag
What is HTML <datalist> Tag HTML Tag
What is HTML <dd> Tag HTML Tag
What is HTML <del> Tag HTML Tag
What is HTML <details> Tag HTML Tag
What is HTML <dfn> Tag HTML Tag
What is HTML <dialog> Tag HTML Tag
What is HTML <dir> Tag HTML Tag
What is HTML <div> Tag HTML Tag
What is HTML <dl> Tag HTML Tag
What is HTML <dt> Tag HTML Tag
What is HTML <em> Tag HTML Tag
What is HTML <embed> Tag HTML Tag
What is HTML <fieldset> Tag HTML Tag
What is HTML <figcaption> Tag HTML Tag
What is HTML <figure> Tag HTML Tag
What is HTML <font> Tag HTML Tag
What is HTML <footer> Tag HTML Tag
What is HTML <form> Tag HTML Tag
What is HTML <frame> Tag HTML Tag
What is HTML <frameset> Tag HTML Tag
What is HTML <h1> to <h6> Tags HTML Tag
What is HTML <head> Tag HTML Tag
What is HTML <header> Tag HTML Tag
What is HTML <hgroup> Tag HTML Tag
What is HTML <hr> Tag HTML Tag
What is HTML <html> Tag HTML Tag
What is HTML <i> Tag HTML Tag
What is HTML <iframe> Tag HTML Tag
What is HTML <img> Tag HTML Tag
What is HTML <input> Tag HTML Tag
What is HTML <ins> Tag HTML Tag
What is HTML <kbd> Tag HTML Tag
What is HTML <label> Tag HTML Tag
What is HTML <legend> Tag HTML Tag
What is HTML <li> Tag HTML Tag
What is HTML <link> Tag HTML Tag
What is HTML <main> Tag HTML Tag
What is HTML <map> Tag HTML Tag
What is HTML <mark> Tag HTML Tag
What is HTML <menu> Tag HTML Tag
What is HTML <meta> Tag HTML Tag
What is HTML <meter> Tag HTML Tag
What is HTML <nav> Tag HTML Tag
What is HTML <noframes> Tag HTML Tag
What is HTML <noscript> Tag HTML Tag
What is HTML <object> Tag HTML Tag
What is HTML <ol> Tag HTML Tag
What is HTML <optgroup> Tag HTML Tag
What is HTML <option> Tag HTML Tag
What is HTML <output> Tag HTML Tag
What is HTML <p> Tag HTML Tag
What is HTML <param> Tag HTML Tag
What is HTML <picture> Tag HTML Tag
What is HTML <pre> Tag HTML Tag
What is HTML <progress> Tag HTML Tag
What is HTML <q> Tag HTML Tag
What is HTML <rp> Tag HTML Tag
What is HTML <rt> Tag HTML Tag
What is HTML <ruby> Tag HTML Tag
What is HTML <s> Tag HTML Tag
What is HTML <samp> Tag HTML Tag
What is HTML <script> Tag HTML Tag
What is HTML <search> Tag HTML Tag
What is HTML <section> Tag HTML Tag
What is HTML <select> Tag HTML Tag
What is HTML <small> Tag HTML Tag
What is HTML <source> Tag HTML Tag

Single Articles
How to create HTML <form> TagHTML Tag
Which browser will support for HTML <form> TagHTML Tag
Attributes for HTML <form> TagHTML Tag
How to use An HTML form with checkboxesHTML Tag
How to use An HTML form with radiobuttonsHTML Tag
How to set Default CSS Settings for HTML <form> TagHTML Tag
How to add HTML <form> accept-charset AttributeHTML Tag
How to add HTML <form> action AttributeHTML Tag
How to add HTML <form> autocomplete AttributeHTML Tag
How to add HTML <form> autocomplete on AttributeHTML Tag
How to add HTML <form> autocomplete off AttributeHTML Tag
How to add HTML <form> enctype AttributeHTML Tag
How to add HTML <form> enctype application/x-www-form-urlencoded AttributeHTML Tag
How to add HTML <form> enctype multipart/form-data AttributeHTML Tag
How to add HTML <form> enctype text/plain AttributeHTML Tag
How to add HTML <form> method AttributeHTML Tag
How to add HTML <form> method get AttributeHTML Tag
How to add HTML <form> method post AttributeHTML Tag
How to add HTML <form> name AttributeHTML Tag
How to add HTML <form> novalidate AttributeHTML Tag
How to add HTML <form> rel AttributeHTML Tag
How to add HTML <form> rel external AttributeHTML Tag
How to add HTML <form> rel help AttributeHTML Tag
How to add HTML <form> rel license AttributeHTML Tag
How to add HTML <form> rel next AttributeHTML Tag
How to add HTML <form> rel nofollow AttributeHTML Tag
How to add HTML <form> rel noopener AttributeHTML Tag
How to add HTML <form> rel noreferrer AttributeHTML Tag
How to add HTML <form> rel opener AttributeHTML Tag
How to add HTML <form> rel prev AttributeHTML Tag
How to add HTML <form> rel search AttributeHTML Tag
How to add HTML <form> target AttributeHTML Tag
How to add HTML <form> target _blank AttributeHTML Tag
How to add HTML <form> target _self AttributeHTML Tag
How to add HTML <form> target _parent AttributeHTML Tag
How to add HTML <form> target _top AttributeHTML Tag
How to add HTML <form> target framename AttributeHTML Tag

Read Full:
HTML Tag
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded:
8 months ago
Uploaded by:
Admin
Views:
577
Ref on:
View



Share on: