Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • What are the latest html elements added in html5

    • 0
    • 1
    • 1
    • 1
    • 0
    • 0
    • 0
    • 0
    • 1.21k
    Comment on it

    Here are various html elements which has been added to html5, some of the important elements are listed bellow:

    1. . <header>

      This html element is used for define the header section of the html page.

      <header>
          <p>this is header</p>
      </header>

    2. . <footer>

      This html element is used for define the footer section of the html page.

      <footer>
          <p>this is footer</p>
      </footer>

    3. . <nav>

      This html element is used for navigation propose.

      <nav>
          <a href="#">first navigation</a> |
          <a href="#">second navigation</a> |
      </nav>

    4. . <figure>

      This html element is used for showing diagrams, photos, code etc. in the html page.

      <figure>
        <img src="myImage.jpg" alt="Imagek" width="100" height="200">
      </figure>
      

    5. . <article>

      This html element is used for articles (a special way of representing text in html page).

      <article>
          <p>this is article</p>
      </article>

    6. . <details>

      This html element is used for showing details that is the extra information about something and it also allows the use to show or hide this particular section in the html page.

      <details>
        <summary>Click here to show details.</summary>
        <p> This is details.</p>
      </details>

    7. . <time>

      This html element is used for showing date and time in the html page.

      <time datetime="2015-08-15 20:00">Independence day</time>
      

    8. . <output>

      This html element is used for showing output of any function on the html page.

      <output name="result" for="idOfOtherElement"></output>
      

    9. . <aside>

      This html element is used for showing the information which correlated to the html page.

      <aside>
      <p>aside element </p>
      </output>
      

    10. . <meter>

      This html element is used for showing measurements in the html page

      <meter value="6" min="5" max="7"></meter>
      

    11. . <video>

      This html element is used for render video in the html page

      <video width="200" height="100" controls>
        <source src="video.mp4" type="video/mp4">
        Your browser does not support the video tag.
      </video>
      

    12. . <audio>

      This html element is used for render audio in the html page

      <audio width="200" height="100" controls>
        <source src="horse.mp3" type="audio/mpeg">
        Your browser does not support the audio tag.
      </audio>
      

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: