Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions GA-worksheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@

##Project #2 Part #1: Header HTML
1. What is the purpose of the header tag?

A: To hold other tags, specifically for a website, sort of like a body tag.
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The header sits within the body (as opposed to the head, which is for metadata).

More specifically, the header tag actually holds the introductory material for the website, such as a logo and navigational links. Check it out on Buzzfeed.com. The top of the page that lets you know that you're on Buzzfeed is the header (inspect element to clarify).

2. What is a Navigation Bar?

A: A list of links.
3. What tag do we use to make a navigation bar? < >

4. <ul> Stands for _____________________
<li> Stands for ______________________

A: The unordered list tag (<ul>).
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

4. <ul> Stands for: unordered list
<li> Stands for: list item
5. What does the <a> tag do?

A: It allows a text to be a link to another page.
6. What would the line of HTML below do?

A: It would bring you to the google webpage.
``` html
<a href="http://www.google.com">Google</a>
```
Expand Down