Week 12 Flashcards
What does the head tag do?
Used to contain special page info such as its decoding, title, links to css & javascript
What is the body tag for?
Used to contain main content of web page
What is the header tag for?
Used to contain navigation, logos, & other introductory material
What is the main tag for?
Used to contain main content of the web page
What is the footer tag for?
Used to contain additional info like contact info, authorship info, etc
What is the title tag for?
Used to tell the web browser what text should go in the little tab for web pages at the top of the browser
What is the p tag for?
Used to denote text with a beeline at the end
What is the a tag for?
It is an anchor tag to put links to other web pages
How is an anchor tag formatted?
<a href=“url”>link text</a>
How is an image tag formatted?
<img src=“image_file_or_image_url“>
What are a few additional attributes for image tags?
alt, width, height
What are each of the tags within a table for?
tr = table row
td = table data
th = table heading
What are the two unordered list tags?
ul for outer and li for each bullet point inside
How is a comment formatted?
<!— comment —>