Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. On a website, what is the purpose of HTML code?
  2. To frame webpage elements
  3. What is the difference between an element and a tag?
  4. tags label elements and act as a point of reference in the code
  5. Why do we use attributes in HTML elements?
  6. to further define elements and their attribtes or attributes tell us more about elements
  7. Describe the purpose of the head, title, and body HTML elements.
  8. body - everything insdie this element is shown in the main browser window
  9. head - This contains information about the page
  10. title - shown in the top of the browser
  11. In your browser (Chrome), how do you view the source of a website?
  12. right click view page source
  13. List five different HTML elements and what they are used for. For example, <p></p> is a paragraph element, and it is used to represent a paragraph of text.
  14. <br /> to add a line break inside the middle of a paragraph
  15. <sup> to contain characaters that should be superscript
  16. <i> makes words appear as italic
  17. <hr /> to create break between themes
  18. <sub> to contain characters that should be subscript
  19. What are empty elements?
  20. empty elements are predefined and contain no words between tags
  21. What is semantic markup?
  22. their purpose is to describe the content of your web page more accurately
  23. Waht are three new semantic elements introduced in HTML 5? Use page 431 in the book to find more about these new elements.
  24. header
  25. aside
  26. article
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement