How to use meter tag


<meter>

All Tags not showing in online page, but show on view source.

<meter value="2" min="0" max="10">Your Browser is not supported meter tag</meter>

Code show like this:

Your Browser is not supported meter tag

Browser Support

The <meter> tag is not supported in Internet Explorer.

What is meter tag

meter tag used to show your progress with meter.

HTML5

meter is new in html5.

How to use meta tag


<meta>

All Tags not showing in online page, but show on view source.

<head>
<meta name="description" content="Home2IT A Responsive Web Site Tutorial"/>
<meta name="keywords" content="kbbr tag in html, how to use help mark in html"/>
<meta name="author" content="Home2IT.Com, pradeepkumar.anvi@gmail.com" />
<meta charset="UTF-8">
</head>

Code show like this:

Browser Support

The <meta> tag is supported in all major browsers.

What is meta tag

meta tag is use for keywords, description, author with name attribute. meta tag use inside of head tag.

HTML 4.01

<meta http-equiv=”content-type” content=”text/html; charset=UTF-8″>

HTML5

<meta charset=”UTF-8″>

How to Refresh document after 15 seconds.

<meta http-equiv=”refresh” content=”30″>

How to use menu tag


<menu>

All Tags not showing in online page, but show on view source.

<menu>
<li>Users point1: Sam</li>
<li>Users point2: Web</li>
</menu>

Code show like this:

  • Users point1: Sam
  • Users point2: Web
  • How to use mark tag


    <mark>

    All Tags not showing in online page, but show on view source.

    <p>Mark your text like <mark>HTML5</mark></p>
    

    Code show like this:

    Mark your text like HTML5

    Browser Support

    The <mark> tag is not supported in supported in Internet Explorer 8 and earlier versions.

    What is mark tag

    mark tag is mark your text with yellow color background.

    HTML5

    Mark tag is New

    How to use map tag


    <map>

    All Tags not showing in online page, but show on view source.

    <img src="images/area_map.jpg" border="0" usemap="#Map">
    <map name="Map">
      <area shape="circle" coords="139,218,80" href="#">
    >/map>
    

    Code show like this:

    Browser Support

    The <map> tag is supported in all major browsers.

    What is map tag

    map tag use for area tag use for image link in a particular area, You can see free text is linked of this whole image

    How to use link tag


    <link>

    All Tags not showing in online page, but show on view source.

    <head>
    <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    

    Code show like this:

    Browser Support

    The <link> tag is supported in all major browsers.

    Attention: link tag use into head tag.

    What is link tag

    link tag is link css, png, jpg file. If you link a css file use rel=”stylesheet” and type=”text/css” with link tag.

    How to use li tag


    <li>

    All Tags not showing in online page, but show on view source.

    <ul>
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    </ul>
    

    Code show like this:

    • Users point1: Sam
    • Users point2: Web

    Browser Support

    The <li> tag is supported in all major browsers.

    What is li tag

    li tag is list item. The li tag is used in ordered lists(ol) tag, unordered lists (ul) tag, and in menu tag.

    How to use legend tag


    <legend>

    All Tags not showing in online page, but show on view source.

    <form>
    <fieldset>
    	<legend>Fill Form</legend>
        Your Name: <input type="text"><br>
        Your Email ID: <input type="email"><br>
    </fieldset>
    </form>
    

    Code show like this:

    Fill Form

    Your Name:
    Your Email ID:

    Browser Support

    The <legend> tag is supported in all major browsers.

    What is legend tag

    legend tag used to a caption for the fieldset tag.

    How to use label tag


    <label>

    All Tags not showing in online page, but show on view source.

    <form>
        <label for="name">Your Name:</label> <input type="text"><br>
        <label for="email">Your Email ID:</label> <input type="email"><br>
    </form>
    

    Code show like this:



    Browser Support

    The <label> tag is supported in all major browsers.

    What is label tag

    label tag used to a label for an input tag

    How to use keygen tag


    <keygen>

    All Tags not showing in online page, but show on view source.

    <form action="" method="post">
      <keygen name="your security">
    </form>
    

    Code show like this:


    Browser Support

    The <keygen> tag is not supported in supported in Internet Explorer.

    Difference in HTML5

    The keygen tag is new in HTML5.