Warm-Up:
Look at your score for the HTML project in Google Classroom. If you did not earn 50/50, leave a comment on that project explaining why your score was so low. (DON'T say "I didn't follow directions." Say WHY you didn't.) (If you got a 50/50, leave a comment saying what you'd like to add to your page that you currently don't know how to do.)
PGCPS Gmail Login | Student SchoolMax Login
Agenda:
- Progress Report grades are published.
- You should check yours.
- If you don't like your grade, decide how you will improve it.
- Complaining doesn't result in improvements, FYI.
- Series Video 5
- Due Friday, 2/24!
- "Dancercize"
- Related project is coming soon.
- Film Festival Screening event
- March 21st (Snow Date: March 28)
- Cost will be $5.50 per student.
- Paperwork is in, waiting for approval.
- Web Design
- This tutorial can help you if you try it.
- Mistakes were expected.
- Typos, no matter how many, were only one line on the rubric.
- Not including items asked for in the rubric cost a lot more points.
- MOST code needs an opening and a closing tag (also called a start tag and an end tag).
- Tags without a / are not closing tags. Paragraphs end with a </p>, not a <p>.
- <p>Paragraph 1</p>
- <p>Paragraph 2</p>
- <p>Paragraph 3</p>
- <p>This paragraph is missing a closing tag.
- <p><p>There is no reason to start a paragraph inside a paragraph.
- Tags without a / are not closing tags. Paragraphs end with a </p>, not a <p>.
- Heading tags like <h1>this</h1> and <h2>this</h2> are for titles and subtitles, not for everything.
- Heading tags do not need to be inside paragraph tags. They make their own.
- Use <b>bold</b> and <i>italic</i> tags FOR EMPHASIS, not for everything.
- Nesting is good. Staggering is bad.
- <p><b><i>Bold and italics</i></b></p>
<p><b><i>Bold and italics</p></b></i>
- NEW: If you want text to go onto a new line without starting a new paragraph, use the line break tag.
- Here is a <br>line break. =
- Here is a
line break. - Should technically be written as <br />, since it's both a start and end tag.
- NEW-ish: The <b>bold</b> and <i>italic</i> tags are old standards.
- <strong>This is the current way to make text bold.</strong>
- <em>This is the current way to make text italic.</em>
- They are NOT interchangable. <i>cannot be closed with</em>.
- I mentioned this last week, but said to use <b> and <i> as they are easier to remember then starting out. As you get more comfortable with html, you should start using these instead.