Assignment 2
HTML Mark Up
Based on the Website HTML Markup Audit in-class activity, let's mark up the HTML for the page.
Submission
Push your completed deliverable to your GitHub deliverable repository.
Due: Sun Sept 18, 2022
Starter Files
open_in_newSite Images & Reference
# Instructions
In your deliverables repository, create a 02-html-markup
folder within the assignments
folder.
Take the complete In-Class 2 - Website HTML Markup Audit activity and write out the HTML code in an index.html
file.
# A couple things to note
- Make sure to also include the
<html>
,<head>
, and other key boilerplate code discussed in class. - The main hero banner has a
background-image
applied throughcss
. You do not need to include it. - The images in the cards are placeholders using
https://placeimg.com/640/480/nature
from PlaceIMG (opens new window). I just changed the values slightly to get different images on each card. - The image for the about section is found in the Starter Assets (opens new window)
- You do not need to include the icons
We will not be doing any styling in this assignment. When completed, your code should look something like this when viewed in the browser:

# Submission
Submit this assignment by pushing your code to your mad9013-deliverables
repository with the commit message Complete 02-html-markup assignment
.
A reminder of the git commands:
git add -A
git commit -m "Complete 02-html-markup assignment"
git push
1
2
3
2
3