THIS VIDEO REVIEWS THE MOST IMPORTANT CONTENT COVERED IN CLASS TODAY!- Objective:
- Students will be able to:
- Build a webpage using HTML
- Design a webpage based on user needs
- Write readable code
- Explain the differences between HTML and CSS in both use and syntax.
- Link to an external style sheet.
- Use CSS selectors to style HTML text elements.
- Students will be able to:
- Warm-Up:
- In your Google Doc from Week 1, paste the following vocabulary under the heading of "Vocabulary."
- CSS - Cascading Style Sheets; a language used to describe how HTML elements should be styled
- CSS Selector - the part of a CSS rule-set that defines which HTML elements the style should be applied to
- In your Google Doc from Week 1, paste the following code under the heading of "CSS Code." NOTE THAT THIS IS NOT HTML CODE!
- 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.
- 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.
- Computer Setup
- 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.
- VS Codium
- (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.)
- Code.org
- (Do not go directly to Code.org to complete assignments! Instead, bookmark the Clever login page and use that to connect to Code.org.)
- VS Codium
- 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.
- Deadlines: (Content is subject to change due to various factors including All-Major days and inclement weather days.)
- Warm-Ups: Due daily
- Week 1 Assignments Due 08-28 (2 days)
- Week 2 Assignments Due 09-04 (2 days)
- Week 3 Assignments Due 09-12 (3 days)
- Lesson 5: Mini-Project: HTML Web Page
- Lesson 6: Styling Text with CSS
- You will need to create a new document. We've been using index.html, but now we will need a stylesheet. These are frequently named style.css (the .css part at the end is crucial).CSS code in a stylesheet should be formatted like this:
CSS Selector or Class { element: value; element: value; }
Here's an example of actual CSS code that would change all bold text (made using <strong> and </strong> to be dark red.
strong { color: #ba372a; }
Mr. Smith will be able to show you more about this in class.
If you are trying to find just the right color, you can type in the name of the color for the value OR use a color picker. There's more than one online tool that can be used, though Mr. Smith tends to use the color pickers built into image editors or the one built into VSCodium. Code.org's editor also has a color picker that can be used.
- Grading Rubric
- 5 pts: Screenshot uploaded showing style.css on one side and how the code looks in a web browser on the other side.
- 1 pt: Paragraphs are a different size than default due to style.css code.
- 1 pt: Paragraphs are a different color than default due to style.css code.
- 3 pts: Code does not have errors.
- 1 pt Extra Credit: Page background is a different color that still contrasts well with text colors due to style.css code.
- Lesson 7: Intellectual Property
- Week 3 Exit Ticket
- You will need to create a new document. We've been using index.html, but now we will need a stylesheet. These are frequently named style.css (the .css part at the end is crucial).CSS code in a stylesheet should be formatted like this:
- Week 4 Assignments Due 09-18 (2 days)
- Lesson 8: Using Images
- Lesson 9: Styling Elements with CSS
- Week 4 Exit Ticket
- Week 5 Assignments Due 09-25 (2 days)
- Lesson 10: Mini-Project: Adding Style to a Web Page
- Lesson 11: CSS Classes
- Week 5 Exit Ticket
- Week 6 Assignments Due 10-01 (2 days)
- Lesson 12: Organizing Content with Flexbox
- Lesson 13: Flexbox Children for More Control
- Week 6 Exit Ticket
- Week 7 Assignments Due 10-10 (3 days)
- Lesson 14: Chapter 1 Project
- Lesson 16: Sources and Research
- Lesson 17: Linking Pages
- Week 7 Exit Ticket
- Week 8 Assignments Due 10-16 (2 days)
- Lesson 18: CSS Pseudo-classes
- Lesson 19: Planning a Multi-Page Site
- Week 8 Exit Ticket
- Week 9 Assignments Due 10-23 (2 days)
- Lesson 20: Project - Website for a Purpose (begin)
- Week 9 Exit Ticket
- Lesson 20: Project - Website for a Purpose (begin)
- Week 10 Assignments Due 01-21 (3 days)
- Lesson 20: Project - Website for a Purpose (finish)
- Lesson 21: Peer Review and Final Touches
- Exit Ticket
- This week's exit ticket will not "go live" today, because how are you going to say what you did all week when it's the first day?
-
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? - NOTE: If you do not describe WHAT you did, saying you worked on it is not enough information to earn credit.
- 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.
- 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.
- In your Google Doc from Week 1, paste the following vocabulary under the heading of "Vocabulary."