Skip to content

CS Discoveries, 11-10-2025, Lesson 3: Headings and Lists

THIS VIDEO REVIEWS THE MOST IMPORTANT CONTENT COVERED IN CLASS TODAY!

  1. Objective:
    • Students will begin writing simple code to explore the complexity and simplicity of coding HTML.
  2. Warm-Up:
    1. In your Google Doc from Week 1, paste the following vocabulary under the heading of "Vocabulary."
      • Heading - A title or summary for a document or section of a document.
      • List - allows web developers to group a set of related items
    2. In that same Google Doc, paste the following code under the heading of "HTML Code."
    3. You should have already shared your Google Doc with aaron.smith@pgcps.org so no additional work needs to be done to hand this in.
  3. Warm-Ups are usually a 5 point Independent Work grade if a written response is expected, or a 5 point Assessment grade if the Warm-Up is a quiz. They are due at the start of class and not eligible for late submission or re-submission.
  4. Computer Setup
    1. There is a lot of useful software on the lab computers, but today we will only be covering the most relevant ones for this class.
      1. Firefox
      2. VS Codium
        1. (We will be using this industry standard program for coding when we are not using Code.org. Use this link to get it installed on your computer.)
      3. Code.org
        1. (Do not go directly to Code.org to complete assignments! Instead, bookmark the Clever login page and use that to connect to Code.org.)
  5. Deadlines: (Content is subject to change due to various factors including All-Major days and inclement weather days.)
    1. Warm-Ups: Due daily
    2. Week 2 Assignments Due 11-13 (2 days)
      1. Lesson 3: Headings and Lists
        1. Open your index.html file from Lesson 2 in VS Codium. (If you're struggling with this step, check the video tutorial.)
        2. All the work done today should be between the <body></body> tags. Don't work outside of them unless you are fixing a mistake from Lesson 2.
        3. If you copied the sample from Lesson 2, you already have a set of h1 tags for your page title, Change the title if you've thought of something better, but leave the tags as they are.
        4. Add a subheading or two to your page. These should NOT be h1, save that for your page title.
          1. The higher the number, the smaller the heading text.
          2. h4 will have the text be the same size as standard text, just bold. Use this sparingly. h2 and h3 are far more commonly used.
          3. A heading beginning with <h2> MUST end with </h2>. If the numbers don't match, the heading doesn't end.
        5. Add a list using the code shared for your notes today.
          1. Lists begin and end with ol or ul tags, for ordered (numbered) lists or unordered (bullet point) lists. These tags are only used once per list.
          2. Each line item of a list begins and ends with li (line item) tags. These are used regardless of if it's an ordered or unordered list.
          3. Don't use <li> where you're supposed to use <ol> or <ul>! This is the most common mistake made in this lesson.
          4. Every line item needs to end with </li>, and an ordered list needs to end with </ol> while an unordered list needs to end with </ul>! This is the 2nd most common mistake made in this lesson.
        6. Use the Print Screen (Often abbreviated to "Prnt Scrn," may  require the Function (Fn) button to be pressed depending on the keyboard) key to create a screenshot of your work as it is displayed in Firefox and in VSCodium.
          1. This file will be saved in your "Screenshots" folder, which will be in your Pictures folder.
        7. Go to Canvas to hand this in.
          1. If you did Lesson 2, you'll have more than one screenshot in this folder! Make sure you're uploading the correct one!
        8. Grading Rubric
          1. 5 pts: Single screenshot shows both the index.html file displayed in VSCodium and Firefox, nothing is cropped out of the shot.
          2. 3 pts: Code includes more than one heading size and at least one list (numbered or bullet points).
          3. 2 pts: All content is contained in tags and is between the <body></body> tags.
      2. Lesson 4: Digital Footprint
      3. Week 2 Exit Ticket
    3. Week 3 Assignments Due 11-21 (3 days)
      1. Lesson 5: Mini-Project: HTML Web Page
      2. Lesson 6: Styling Text with CSS
      3. Lesson 7: Intellectual Property
      4. Week 3 Exit Ticket
    4. Week 4 Assignments Due 09-18 (2 days)
      1. Lesson 8: Using Images
      2. Lesson 9: Styling Elements with CSS
      3. Week 4 Exit Ticket
    5. Week 5 Assignments Due 11-25 (1 day)
      1. Lesson 10: Mini-Project: Adding Style to a Web Page
      2. Week 5 Exit Ticket
    6. Week 6 Assignments Due 12-04 (2 days)
      1. Lesson 11: CSS Classes
      2. Lesson 10: Mini-Project: Adding Style to a Web Page
      3. Week 6 Exit Ticket
    7. Week 7 Assignments Due 12-12 (2 days)
      1. 12-08 is an All Major Day
      2. Lesson 12: Organizing Content with Flexbox
      3. Lesson 13: Flexbox Children for More Control
      4. Week 7 Exit Ticket
    8. Week 8 Assignments Due 12-18 (2 days)
      1. Lesson 16: Sources and Research
      2. Lesson 17: Linking Pages
      3. Week 8 Exit Ticket
    9. Week 9 Assignments Due 01-09 (3 days)
      1. Lesson 18: CSS Pseudo-classes
      2. Lesson 19: Planning a Multi-Page Site
      3. Lesson 20: Project - Website for a Purpose (begin)
      4. Week 9 Exit Ticket
    10. Week 10 Assignments Due 01-15 (2 days)
      1. Lesson 20: Project - Website for a Purpose (finish)
      2. Week 9 Exit Ticket
    11. Week 11 Assignments Due 01-23 (2 days)
      1. Lesson 21: Peer Review
    12. Week 12 Assignments Due 01-26 (1 day)
      1. End of Course Survey
  • Exit Tickets
    1. Exit Tickets "go live" during the last 10 minutes of our last class of the week, except when we only meet once during that week, it's the last week of the Quarter, or Mr. Smith screwed up.
    2. Scroll up for the information for this week to see the link to the Exit Ticket.
    3. 4 pts Proofread your work.
      3 pts What did you accomplish in CS Discoveries this week?
      3 pts What did you learn in CS Discoveries this week?
    4. NOTE: If you do not describe WHAT you did, saying you worked on it is not enough information to earn credit.
      1. Bad Example: "I completed Unit 2 Lesson 1" says nothing about what you did or learned. Describe what you did and what you learned as if to someone who does not have access to the course materials.
    5. Exit Tickets are always 10 point Classwork grades and not eligible for late submission or re-submission. They are due during the last 10 minutes of the last class of the week.

Previous Lessons: 11/04, 11/06