Week03 – Homework

Add HTML Markup to Your Resume

This assignment builds on Week 01 homework:

  1. Use VS Code to open your plain text resume created in Week01 homework.
  2. Add HTML tags we studied in Week02 and Week03, using appropriate headings, lists, paragraphs, line-breaks, horizontal rules, etc.
  3. Save a .html file with the following naming convention: [your SU NetID]-resume.html
    My filename would be dwtalley-resume.html — note that we are not using SU student number, but rather your NetID, which is the same as the part of your SU email address before @syr.edu.
  4. Upload your .html file to Blackboard by or before the deadline listed above. Late assignments will receive no credit.

I want to start maintaining file naming conventions in our work to allow files to stand out visually in listings without risk of identical filenames overwriting others' work. This is an important practice as you start working within a team of front-end web developers, so it's best to develop good habits as we work. For this reason, ignoring folder and file naming conventions will count against your grade from now on.

Again, reference these links to see how HTML is applied in the samples presented:

Guidelines

  • Don't worry about formatting and style at this point: You'll add CSS styling in a later assignment, but for now we're focusing on the proper semantic HTML structure.
  • Think about structure:
    • What levels of headings will you use, and how will you manage their semantic role in the file?
    • How will you use lists (both ordered/numbered and unordered/bulleted lists)?
    • What other elements will you include? How will you organize all of them?
    • What does view page source tell you about how I created this nested unordered list?
  • Be sure you include the three always-required HTML elements in your file. (You know which three those are, right?)
  • Include the "semantic strucural" elements to convey the meaning of your content: header, main, section, footer. Will you also need article and aside? That's your judgment call.