Note 4 for Internet Web Publishing
Watch & Read:
CSS at w3schools
CSS: Adding Style to the Web
3 ways to attach a style sheet! Internal, External, and inline Style Sheets
Format for Internal and External Styles:
selector {property: value}
Example: h3 {color: #FF0000}
This changes all h3's font color to Red (#FF0000)
You can apply multiple styles at once by separating them with a ; (semi colon)Example: h3
{
color: #FF0000;
font-family: Arial;
}Internal Styles use the style tag inside the head section of your webpage
Example: Change the color of the h3 text and size of the font (text) inside a p tag
<style>
h3 {color: #FF0000}
p { font-size: 150%}
</style>
Review the following:
Terms you need to know:
CSS, link, internal styles, external styles, selector, property, value
Homework:
You should be reading Chapters 8 & 9 in your book
Reminder: You will need to post an article about computers, web, Internet security or e-commerce every week!!!
Final Step:
Review in your mind everything we covered in class and remember to cover it again before you go to bed so your mind to process this information while you sleep.