- Fork this repo.
- Clone your fork.
- Follow the instructions.
- Make one commit for each question.
- Open a pull request to this repo.
If you finish early, try tackling the Moonrise kingdom exercise - https://github.com/ga-wdi-exercises/moonrise_kingdom/blob/master/sam_registration.jpg
Open up index.html in a text editor and browser. Link to the provided stylesheet
Commit
Identify one non-semantic tag and replace it with a semantic one
Commit
Something about the image tag is incorrect. Fix the error.
Commit
Change the title of the page. Specifically, change what shows in the tab of the page.
Commit
Set the margin to 0 for each direct child of:
header
footer
.main
aside
Commit
If you inspect element, you'll see that both
.left
and .right
have width:50%;
and float:left
, yet they are not sitting next to each other.
Fix this issue without modifying any of .left
and .right
's padding
, border
, or width
.
Commit
When the page is fewer than 600px wide, the background of .main turns red.
Instead of making .main red, reorder the elements to:
- Header
- Main
- Aside
- Aside
- Footer
Using CSS only.
Commit
Open up workflow.txt
Rearrange the lines to identify the correct workflow for submitting a pull request on a non-master branch.
Remove the lines that are not required in this workflow
Commit