Advertisement
abhijit5893

HTML5 Elements Part 2

Nov 4th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.71 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>HTML5 ELEMENTS PART 1</title>
  5. </head>
  6. <body>
  7. <header>
  8. <h1>Header</h1>
  9. <p>A group of introductory or navigational aids. A header element typically contains the section’s heading (an h1–h6 element or an hgroup element), but can also contain other content, such as a table of contents, a search form, or any relevant logos.</p>
  10. </header>
  11. <hgroup>
  12. <h1>Welcome</h1>
  13. <h2>Enjoy learning </h1>
  14. </hgroup>
  15. <figure id="figure2">
  16.   <figcaption>LTSLAB LOGO</figcaption>
  17.   <img src="https://lh5.googleusercontent.com/-Hwj8anlKS0o/T_kuHNkj5nI/AAAAAAAAAZw/RS2r4Cc41bg/s0/fav.png" alt="LOGO">
  18. </figure>
  19. <footer>
  20. <h2>Footer</h2>
  21. © 2012 LTSLAB Foundation
  22. </footer>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement