DUE: Monday, January 13, 11:59PM
Assuming you:
- Have a free GitHub app
- Have installed the GitHub App for Mac or Windows
- Have signed into GitHub
- Have NOT forked this repository already
Then:
- Click the "Fork" button in the upper-right corner of this page. This will create a duplicate copy of this entire repository under your account.
- Now, your page should say "Your Name / html-css" at the top instead of "mpcs52553/html-css".
- Next, let's get the code down to your laptop. Click "Clone in Desktop" in the lower-right of this page. That should trigger your GitHub App to start up and sync the code down to your laptop.
- Modify the
homework.html
file so that it looks likehomework_goal.png
. You should duplicate everything except the actual list item text which can be different. But everything else on the page should be the same. - Use your GitHub to commit your changes locally, then push the changes back to your GitHub account.
If you already forked this repository, then you can either delete your repository and re-fork, or, simply add a file named homework.html
into your existing repository.
Here is the HTML guide I mentioned in class:
You'll probably need the material from chapters 1 - 6 in order to complete the homework.
Your code will be judged on:
- Is it a valid HTML 5 document (has proper doctype, html, head, and body elements)?
- Do elements have proper open and closing tags?
- Are you using the Arial font (or another font of your choosing)?
- Does it look like homework_goal.png?
In order to complete the challenge, here are some HTML elements and CSS properties that might help. You don't need all of these. There are many ways to solve it, so I'm just throwing out some examples.
You may or may not need these.
ol
ul
li
p
h1
h2
header
footer
section
title
head
body
html
!doctype
font-family
border
background-color
color
margin
padding
list-style-type
display
Good luck!