Advertisement
abhijit5893

HTML5 Elements Part 3

Nov 15th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.76 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>HTML5 ELEMENTS PART 3</title>
  5. </head>
  6. <body>
  7. <article>
  8. <section>
  9. <h3>First section:Time tag</h3>
  10. Now it is<time datetime="2012-11-15T19:00-20:00">7 pm on Thursday</time>
  11. </section>
  12. <section>
  13. <h3>Second section:Progress tag</h3>
  14. Downloading..<progress value="250" max="1000"></progress>
  15. </section>
  16. <section>
  17. <h3>Third section:Meter tag</h3>
  18. 25%<meter min="0" max="100" value="25">25%</meter> of this is completed
  19. </section>
  20. <section>
  21. <h3>Last section:Nav tag</h3>
  22. <nav>
  23. <a href='http://ltslab.blogspot.in/p/about-us.html' >About us</a>
  24. <a href='http://ltslab.blogspot.in/p/and-more.html' >Pages</a>
  25. <a href='http://ltslab.blogspot.in/p/contact_09.html' >Contact</a>
  26. </nav>
  27. </section>
  28. </article>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement