- 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.
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 (i.e., at the top of the browser).
Commit
Set the margin to 0 for each direct child of:
header
footer
.main
aside
Commit
If you inspect the .left
and .right
elements, you will see that they have width: 50%;
and float: left
. However, 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
Do this using only CSS -- do not rearrange the HTML.
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