HTML Skeleton (boilerplate) Flashcards
What indicates we are using html 5
<!DOCTYPE html>
What is at the very top of the page
<!DOCTYPE html>
What is the html element
Root element, the entire top level element of our document. Every other element should be a descendant of this element.
What is another name for html element
Root element
Does the <!DOCTYPE HTML> flag have a closing tag
No, there is no <!DOCTYPE html </html>
What should go inside of the root element aka html element <html></html>
All information on the site except the DOCTYPE goes inside
What comes after the root element aka html
Head element and body eleme t
What is the head element
The document metadata element
Does the info in the head element show up on the page
No
What is meta data
Info about web page, scripts were loading, CSS style sheets
What is the title element
Defines the title of our document
What does the title element do
It shows what we see in our browser
Where does the title element live
In the head element
How does google use the title element
They create a hyperlink based on the title element
What are the two elements that go inside the html element
- Head and 1. Body