Day 1
- On a website, what is the purpose of HTML code? To layout the basic structure and content of the website, the skeleton of the web page.
- What is the difference between an element and a tag? Tags are used to begin and end an html element. An element describes the information between the opening and closing tags.
- Why do we use attributes in HTML elements? Attributes provide us with additional information about the content of an element. Describe the purpose of the head, title, and body HTML elements. The “head” element describes the information outside of the body of the webpage. The “title” describes the webpage which is displayed on the browser tabs above the URL or the title you read in a web search. The “body” element is used to contain the information that is to be displayed in the main body of the website.