Skip to content

jtfragale/checkpoint-01

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Checkpoint 01

Instructions

  1. Fork this repo.
  2. Clone your fork.
  3. Follow the instructions.
  4. Make one commit for each question.
  5. Open a pull request to this repo.

If you finish early, try tackling the Moonrise Kingdom exercise.


HTML

#1

Open up index.html in a text editor and browser. Link to the provided stylesheet.

Commit

#2

Identify one non-semantic tag and replace it with a semantic one.

Commit

#3

Something is missing from the image tag. Fix the HTML.

Commit

#4

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

#5

Set the margin to 0 for each direct child of...

  • header
  • footer
  • .main
  • aside

Commit

#6

If you inspect the .left and .right elements, you will see that they have width: 50%; and float: left. They are not, however, sitting next to each other.

Fix this issue without modifying any of .left and .right's padding, border, or width.

Commit

#7

Open up workflow.txt

Rearrange the lines to identify the correct workflow for submitting a homework assignment created on a non-master branch.

Remove the lines that are not required in this workflow.

Commit

#Bonus

When the page is fewer than 600px wide, the background of .main turns red. The code responsible for this is located in the @media query at the bottom of the stylesheet.

Instead of making .main red, reorder the elements to...

  1. Header
  2. Main
  3. Aside
  4. Aside
  5. Footer

Do this using only CSS -- do not rearrange the HTML.

Commit

About

Second checkpoint for WDI DC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 53.0%
  • CSS 47.0%