Advertisement
jules22400

1First course HTML5

Feb 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. What is HTML?
  2. HTML is the standard markup language for creating Web pages.
  3.  
  4. HTML stands for Hyper Text Markup Language
  5. HTML describes the structure of Web pages using markup
  6. HTML elements are the building blocks of HTML pages
  7. HTML elements are represented by tags
  8. HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
  9. Browsers do not display the HTML tags, but use them to render the content of the page
  10.  
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14. <title>Page Title</title>
  15. </head>
  16. <body>
  17.  
  18. <h1>My First Heading</h1>
  19. <p>My first paragraph.</p>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement