SlideShare a Scribd company logo
BEGINNING HTML AND CSS
CLASS 2HTML/CSS ~ Girl Develop It ~
Intro to HTML and CSS - Class 2 Slides
CSS
Stands for Cascading Style Sheets.
Refers to the hierarchical way that styles get applied to
html elements.
WHAT WE'LL LEARN TODAY
A little CSS history.
Terminology and syntax.
Ways to attach CSS to your page.
Selectors.
Colors and Fonts.
HISTORY OF CSS
The 90s
HTML pages read from top to bottom, black font, no
color, and all default browser styles.
Fine for science papers, but designers said "We
Want More!"
1993: The first graphical browser is born — "Mosaic"
1994: World Wide Web Consortium is inaugurated
(W3C) and the World Wide Web is born.
HISTORY OF CSS
Late 90s
1996: Specifications for CSS1 are released (a year
before HTML 4.0).
CSS1 is buggy and poorly adopted.
1998: W3C releases CSS2.
CSS2 is buggy and poorly adopted.
Meanwhile, table-based layouts and browser wars
are rampant!
HISTORY OF CSS
The 00s
1999 - 2000: Work is begun on CSS2.1 to fix bugs in
CSS 2.
2004: The working draft becomes a candidate for
adoption by the W3C. It reverts back to working draft
in 2005.
2007: The working draft again becomes a candidate
for adoption by the W3C
2010: It reverts back to a working draft.
2011: June 7th, CSS2.1 is finally "sanctified" by the
W3C.
HISTORY OF CSS
CSS3
CSS3, begun in 2000, is still mostly in working-draft
stage.
Modular release (rather than one single adoption).
2013: Most modules still in working-draft stage
...some released and adopted by modern browsers.
CSS: WHAT DOES IT LOOK LIKE?
Intro to HTML and CSS - Class 2 Slides
LET'S CODE SOME CSS!
<head>
<title>
My Very First Web Page!
</title>
<style>
h1 {
color: blue;
background-color: yellow;
}
</style>
</head>
NOW SAVE YOUR PAGE
Open it up in a browser
Does your heading look different?
CSS TERMINOLOGY:
CSS is composed of style "rules"
Here is a style rule:
SYNTAX IS IMPORTANT!
h1 {
color: blue;
background-color: yellow;
}
There are no limits to the number of declarations in a
style rule.
Common convention is to use lower case throughout.
Don't forget the semicolon at the end of the
declarations!
Don't forget the closing curly bracket!
ATTACHING CSS TO YOUR WEB PAGE
There are three ways
Inline
Embedded
Linked
INLINE
<p style="color: red;">Some text.</p>
The style goes right inside the opening HTML tag.
Uses "style", which is an HTML attribute.
Difficult to use in large projects.
EMBEDDED
This is how we did it in our opening exercise.
"Embedded" inside the <head> element between an
opening and closing <style> tag.
If styles are identical across multiple pages in your site --
you'd have to copy and paste for each page.
LINKED
All your styles go on their own style sheet!
A <link> tag in your HTML file points to the location of the
style sheet
<head>
<title>
My Very First Web Page!
</title>
<link rel="stylesheet" type="text/css"
href="style.css">
</head>
ADVANTAGES OF LINKED (EXTERNAL)
STYLE SHEETS:
Shared resource for several pages.
Reduced file size & bandwidth
Easy to maintain in larger projects.
LET'S CODE IT (PART 1)
1. Open a new page in your text editor.
2. Copy the rule you created between the style tags on
your index.html (not the tags themselves, though).
3. Paste it in your new page.
4. Save your page inside the "styles" folder you created
earlier. Name it "styles.css".
LET'S CODE IT (PART 2)
5. Delete the style tags and everything within them on your
index.html page.
6. In their place, code the following:
<link rel="stylesheet" type="text/css"
href="styles/styles.css">
7. Save your index.html page and open it in a browser.
Does the style still show on your page?
SELECTORS
The first item in a style rule.
Describes what is being styled.
h1 {
color: blue;
background-color: yellow;
}
WHAT CAN WE USE AS SELECTORS?
HTML tags.
Classes and ids.
Pseudo classes.
Any combination of the above!
HTML TAGS:
p {
property: value;
}
This would select every paragraph element.
img {
property: value;
}
This would select every image element.
...but what if you need more control?
CLASSES AND IDS
"Class" and "ID" are HTML attributes.
Attributes "describe" elements and are followed by
values.
In your HTML, it looks like this:
<p id="intro">
<span class="warning">
IDS VS. CLASSES
ID: An id can only be used once on a page. Refers to a
singular page element (like a footer).
Think ~ A student ID number
Class: Lots of elements can have the same class. I.E.
There can be many spans with a class of "warning".
Think ~ A student as a member of a class
CLASSES
<p class="warning">
.warning {
property: value;
}
A class name is preceeded by a period in your style
rule.
IDS
<p id="intro">
#intro {
property: value;
}
An id name is preceeded by a pound sign in your style
rule.
NAMING YOUR CLASS OR ID:
Can use letters, numbers, underscore or dash (but don't
start with a number or a dash followed by number).
No spaces — use a hyphen or underscore
CSS is case-insensitive, but the convention is to use all
lowercase letters.
In your HTML, class and id names are in quotes (just
like all other attribute values).
LET'S CODE IT!
Add these rules to your "styles.css" file:
#intro {
color: blue;
}
.warning {
color: red;
}
Add an id of "intro" to your first paragraph.
Find a word or sentence in your "index.html" file and wrap
in span tags with a class of "warning".
Intro to HTML and CSS - Class 2 Slides
PSEUDO CLASSES
Describes a "current condition" of an HTML element,
rather than an "attribute".
Link pseudo classes are the most common
example: a:hover
to style a link when user "hovers" over it
LINK PSEUDO CLASSES
a:link ~unvisited link
a:visited ~visited link
a:hover ~mouse over link
a:active ~activated link
If present, a:hover must come after a:link and a:visited.
If present, a:active must come after a:hover.
LET'S SPICE UP OUR LINKS!
a:link {
color: blue;
}
a:visited {
color: yellow;
}
a:hover {
color: green;
}
a:active {
color: purple;
}
COMPOUND SELECTORS
Combining selectors to get really specific!
p em {
property: value;
}
Selects all em elements that are within a paragraph
#intro a {
property: value;
}
Selects all link elements in elements with an id of "intro".
LET'S ADD A COMPOUND SELECTOR
RULE!
#intro a {
font-style: italic;
}
STYLING WITH COLOR AND FONTS
COLOR
The color property sets the color of the font.
The background-color property sets the color of the
background.
Color value can be defined in one of three ways:
By a recognized color name
By a hexadecimal value
By an RGB value
RECOGNIZED COLOR NAMES
The 17 standard colors are:
aqua, black, blue, fuchsia, gray,
grey, green, lime, maroon, navy,
olive, purple, red, silver, teal,
white, and yellow.
There are 141 named colors:
http://www.w3schools.com/cssref/css_colornames.asp
HEXADECIMAL VALUES
Example — color: #A53C8D
A pound sign followed by three pairs
The first pair equates to red value
The second pair equates to green value
The third pair equates to blue value
RGB VALUES
Example — color: rgb(165, 60, 141)
Three comma-separated numbers from 0 to 255
The first number equates to red value
The second number equates to green value
The third number equates to blue value
CSS3 introduces a 4th value, "a", setting opacity
Example — color: rgba(165, 60, 141, 0.5)
FONT
5 DIFFERENT PROPERTIES TO STYLE FONT!
1. font-style
example: font-style: italic;
values: "normal", "italic", or "oblique"
2. font-variant
example: font-variant: small-caps;
values: "normal", "small-caps", or "inherit"
3. font-weight
example: font-weight: bold;
values: "normal", "bold", "bolder", "lighter",
4. font-size
example: font-size: 12px;
values:
fixed: pixels (ie 12px)
relative: percents (ie 100%) and ems (ie 1.5em)
5. font-family
example:
font-family: Corbel,'Helvetica Neue', Helvetica, Arial,
sans-serif;
Computers don't all have the same fonts installed...so
provide alternatives
Specific to general, in a comma-separated list.
Fonts with two-word names are in quotes
BONUS FONT PROPERTIES!
6. text-transform
example: text-transform: uppercase;
values: "capitalize", "uppercase", "lowercase", or
"none"
7. line-height
example: line-height: 1.5;
values: numbers, percents, pixels, or "ems"
SHORTHAND FONT DECLARATION
example:
font: italic small-caps bold 34px/150% "Times New Roman", Times, serif;
font-style → font-variant → font-weight → font-size / line
height → font-family
you must declare at minimum the font-size and font-family
example: font: 34px "Times New Roman", Times, serif;
LET'S CODE IT!
Add the shorthand font rule to your heading
h1 {
font: italic bold 34px Corbel,'Helvetica Neue',
Helvetica, Arial, sans-serif;
}
CASCADING
Styles "cascade" down until changed
p{
color:blue;
font-family:'Helvetica';
}
.red{
color:red;
}
#special{
font-family:Arial;
}
<p>Paragraph</p>
<pclass="green">Paragraph</p>
<pclass="red">Paragraph</p>
<pclass="red"id="special">Paragraph</p>
CSS PROPERTIES
Many CSS properties have self-explanatory names:
background-color
font-family
font-size
color
width
height
https://developer.mozilla.org/en-
US/docs/Web/CSS/Reference
Comprehensive list of all CSS properties:
QUESTIONS?
?
Intro to HTML and CSS - Class 2 Slides

More Related Content

PPTX
(Fast) Introduction to HTML & CSS
KEY
HTML/CSS Lecture 1
PPT
Web Development using HTML & CSS
PDF
Week 2-intro-html
PDF
HTML & CSS Masterclass
PPT
HTML & CSS Workshop Notes
PDF
Intro to HTML and CSS basics
(Fast) Introduction to HTML & CSS
HTML/CSS Lecture 1
Web Development using HTML & CSS
Week 2-intro-html
HTML & CSS Masterclass
HTML & CSS Workshop Notes
Intro to HTML and CSS basics

What's hot (20)

PDF
Intro to HTML
PDF
HTML Lecture Part 1 of 2
PDF
Web Typography
ODP
Introduction of Html/css/js
ODP
Cascading Style Sheets - Part 01
PPTX
An Overview of HTML, CSS & Java Script
PDF
CSS Foundations, pt 1
PDF
Intro to HTML & CSS
PPTX
Html, CSS & Web Designing
PPTX
Introduction to HTML
PDF
HTML Foundations, pt 2
PPTX
Introduction to html course digital markerters
PDF
3 Layers of the Web - Part 1
PDF
HTML Email
PDF
Frontend Crash Course: HTML and CSS
PPTX
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
DOCX
PHP HTML CSS Notes
PDF
Html,javascript & css
PPTX
Basics of HTML 5 for Beginners
PDF
Images on the Web
Intro to HTML
HTML Lecture Part 1 of 2
Web Typography
Introduction of Html/css/js
Cascading Style Sheets - Part 01
An Overview of HTML, CSS & Java Script
CSS Foundations, pt 1
Intro to HTML & CSS
Html, CSS & Web Designing
Introduction to HTML
HTML Foundations, pt 2
Introduction to html course digital markerters
3 Layers of the Web - Part 1
HTML Email
Frontend Crash Course: HTML and CSS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
PHP HTML CSS Notes
Html,javascript & css
Basics of HTML 5 for Beginners
Images on the Web
Ad

Similar to Intro to HTML and CSS - Class 2 Slides (20)

PPT
CSS Overview
PPT
Make Css easy : easy tips for css
PDF
DOCX
DOCX
Css Introduction
PPT
Unit 2-CSS & Bootstrap.ppt
PDF
Introduction to css
PPT
css-presentation.ppt
DOC
Css introduction
PPT
Spectrum 2015 going online with style - an intro to css
PPTX
HTML to CSS Basics Exer 2.pptx
PDF
Javascript Html Css A Stepbystep Guide Student Student
PPT
PPT
working with internet technologies using CSS
PPT
Css training tutorial css3 &amp; css4 essentials
PPTX
Css basics
PPT
Make Css easy(part:2) : easy tips for css(part:2)
PPT
Basics Of Css And Some Common Mistakes
PPT
Rh10 css presentation
CSS Overview
Make Css easy : easy tips for css
Css Introduction
Unit 2-CSS & Bootstrap.ppt
Introduction to css
css-presentation.ppt
Css introduction
Spectrum 2015 going online with style - an intro to css
HTML to CSS Basics Exer 2.pptx
Javascript Html Css A Stepbystep Guide Student Student
working with internet technologies using CSS
Css training tutorial css3 &amp; css4 essentials
Css basics
Make Css easy(part:2) : easy tips for css(part:2)
Basics Of Css And Some Common Mistakes
Rh10 css presentation
Ad

More from Heather Rock (9)

PDF
GDI Seattle - Web Accessibility Class 1
PDF
GDI Seattle - Intro to JavaScript Class 4
PDF
GDI Seattle - Intro to JavaScript Class 2
PDF
GDI Seattle - Intro to JavaScript Class 1
PDF
GDI Seattle Intro to HTML and CSS - Class 4
PDF
GDI Seattle - Intermediate HTML and CSS Class 3 Slides
PDF
GDI Seattle Intro to HTML and CSS - Class 3
PDF
GDI Seattle Intermediate HTML and CSS Class 1
PDF
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle - Web Accessibility Class 1
GDI Seattle - Intro to JavaScript Class 4
GDI Seattle - Intro to JavaScript Class 2
GDI Seattle - Intro to JavaScript Class 1
GDI Seattle Intro to HTML and CSS - Class 4
GDI Seattle - Intermediate HTML and CSS Class 3 Slides
GDI Seattle Intro to HTML and CSS - Class 3
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intro to HTML and CSS - Class 1

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Encapsulation theory and applications.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Machine learning based COVID-19 study performance prediction
PPT
Teaching material agriculture food technology
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
cuic standard and advanced reporting.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Big Data Technologies - Introduction.pptx
20250228 LYD VKU AI Blended-Learning.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
The Rise and Fall of 3GPP – Time for a Sabbatical?
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Review of recent advances in non-invasive hemoglobin estimation
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Understanding_Digital_Forensics_Presentation.pptx
MYSQL Presentation for SQL database connectivity
Encapsulation theory and applications.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Empathic Computing: Creating Shared Understanding
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Spectral efficient network and resource selection model in 5G networks
Machine learning based COVID-19 study performance prediction
Teaching material agriculture food technology
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
cuic standard and advanced reporting.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Big Data Technologies - Introduction.pptx

Intro to HTML and CSS - Class 2 Slides

  • 1. BEGINNING HTML AND CSS CLASS 2HTML/CSS ~ Girl Develop It ~
  • 3. CSS Stands for Cascading Style Sheets. Refers to the hierarchical way that styles get applied to html elements.
  • 4. WHAT WE'LL LEARN TODAY A little CSS history. Terminology and syntax. Ways to attach CSS to your page. Selectors. Colors and Fonts.
  • 5. HISTORY OF CSS The 90s HTML pages read from top to bottom, black font, no color, and all default browser styles. Fine for science papers, but designers said "We Want More!" 1993: The first graphical browser is born — "Mosaic" 1994: World Wide Web Consortium is inaugurated (W3C) and the World Wide Web is born.
  • 6. HISTORY OF CSS Late 90s 1996: Specifications for CSS1 are released (a year before HTML 4.0). CSS1 is buggy and poorly adopted. 1998: W3C releases CSS2. CSS2 is buggy and poorly adopted. Meanwhile, table-based layouts and browser wars are rampant!
  • 7. HISTORY OF CSS The 00s 1999 - 2000: Work is begun on CSS2.1 to fix bugs in CSS 2. 2004: The working draft becomes a candidate for adoption by the W3C. It reverts back to working draft in 2005. 2007: The working draft again becomes a candidate for adoption by the W3C 2010: It reverts back to a working draft. 2011: June 7th, CSS2.1 is finally "sanctified" by the W3C.
  • 8. HISTORY OF CSS CSS3 CSS3, begun in 2000, is still mostly in working-draft stage. Modular release (rather than one single adoption). 2013: Most modules still in working-draft stage ...some released and adopted by modern browsers.
  • 9. CSS: WHAT DOES IT LOOK LIKE?
  • 11. LET'S CODE SOME CSS! <head> <title> My Very First Web Page! </title> <style> h1 { color: blue; background-color: yellow; } </style> </head>
  • 12. NOW SAVE YOUR PAGE Open it up in a browser Does your heading look different?
  • 13. CSS TERMINOLOGY: CSS is composed of style "rules" Here is a style rule:
  • 14. SYNTAX IS IMPORTANT! h1 { color: blue; background-color: yellow; } There are no limits to the number of declarations in a style rule. Common convention is to use lower case throughout. Don't forget the semicolon at the end of the declarations! Don't forget the closing curly bracket!
  • 15. ATTACHING CSS TO YOUR WEB PAGE There are three ways Inline Embedded Linked
  • 16. INLINE <p style="color: red;">Some text.</p> The style goes right inside the opening HTML tag. Uses "style", which is an HTML attribute. Difficult to use in large projects.
  • 17. EMBEDDED This is how we did it in our opening exercise. "Embedded" inside the <head> element between an opening and closing <style> tag. If styles are identical across multiple pages in your site -- you'd have to copy and paste for each page.
  • 18. LINKED All your styles go on their own style sheet! A <link> tag in your HTML file points to the location of the style sheet <head> <title> My Very First Web Page! </title> <link rel="stylesheet" type="text/css" href="style.css"> </head>
  • 19. ADVANTAGES OF LINKED (EXTERNAL) STYLE SHEETS: Shared resource for several pages. Reduced file size & bandwidth Easy to maintain in larger projects.
  • 20. LET'S CODE IT (PART 1) 1. Open a new page in your text editor. 2. Copy the rule you created between the style tags on your index.html (not the tags themselves, though). 3. Paste it in your new page. 4. Save your page inside the "styles" folder you created earlier. Name it "styles.css".
  • 21. LET'S CODE IT (PART 2) 5. Delete the style tags and everything within them on your index.html page. 6. In their place, code the following: <link rel="stylesheet" type="text/css" href="styles/styles.css"> 7. Save your index.html page and open it in a browser. Does the style still show on your page?
  • 22. SELECTORS The first item in a style rule. Describes what is being styled. h1 { color: blue; background-color: yellow; }
  • 23. WHAT CAN WE USE AS SELECTORS? HTML tags. Classes and ids. Pseudo classes. Any combination of the above!
  • 24. HTML TAGS: p { property: value; } This would select every paragraph element. img { property: value; } This would select every image element. ...but what if you need more control?
  • 25. CLASSES AND IDS "Class" and "ID" are HTML attributes. Attributes "describe" elements and are followed by values. In your HTML, it looks like this: <p id="intro"> <span class="warning">
  • 26. IDS VS. CLASSES ID: An id can only be used once on a page. Refers to a singular page element (like a footer). Think ~ A student ID number Class: Lots of elements can have the same class. I.E. There can be many spans with a class of "warning". Think ~ A student as a member of a class
  • 27. CLASSES <p class="warning"> .warning { property: value; } A class name is preceeded by a period in your style rule.
  • 28. IDS <p id="intro"> #intro { property: value; } An id name is preceeded by a pound sign in your style rule.
  • 29. NAMING YOUR CLASS OR ID: Can use letters, numbers, underscore or dash (but don't start with a number or a dash followed by number). No spaces — use a hyphen or underscore CSS is case-insensitive, but the convention is to use all lowercase letters. In your HTML, class and id names are in quotes (just like all other attribute values).
  • 30. LET'S CODE IT! Add these rules to your "styles.css" file: #intro { color: blue; } .warning { color: red; } Add an id of "intro" to your first paragraph. Find a word or sentence in your "index.html" file and wrap in span tags with a class of "warning".
  • 32. PSEUDO CLASSES Describes a "current condition" of an HTML element, rather than an "attribute". Link pseudo classes are the most common example: a:hover to style a link when user "hovers" over it
  • 33. LINK PSEUDO CLASSES a:link ~unvisited link a:visited ~visited link a:hover ~mouse over link a:active ~activated link If present, a:hover must come after a:link and a:visited. If present, a:active must come after a:hover.
  • 34. LET'S SPICE UP OUR LINKS! a:link { color: blue; } a:visited { color: yellow; } a:hover { color: green; } a:active { color: purple; }
  • 35. COMPOUND SELECTORS Combining selectors to get really specific! p em { property: value; } Selects all em elements that are within a paragraph #intro a { property: value; } Selects all link elements in elements with an id of "intro".
  • 36. LET'S ADD A COMPOUND SELECTOR RULE! #intro a { font-style: italic; }
  • 37. STYLING WITH COLOR AND FONTS COLOR The color property sets the color of the font. The background-color property sets the color of the background. Color value can be defined in one of three ways: By a recognized color name By a hexadecimal value By an RGB value
  • 38. RECOGNIZED COLOR NAMES The 17 standard colors are: aqua, black, blue, fuchsia, gray, grey, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. There are 141 named colors: http://www.w3schools.com/cssref/css_colornames.asp
  • 39. HEXADECIMAL VALUES Example — color: #A53C8D A pound sign followed by three pairs The first pair equates to red value The second pair equates to green value The third pair equates to blue value
  • 40. RGB VALUES Example — color: rgb(165, 60, 141) Three comma-separated numbers from 0 to 255 The first number equates to red value The second number equates to green value The third number equates to blue value CSS3 introduces a 4th value, "a", setting opacity Example — color: rgba(165, 60, 141, 0.5)
  • 41. FONT 5 DIFFERENT PROPERTIES TO STYLE FONT! 1. font-style example: font-style: italic; values: "normal", "italic", or "oblique" 2. font-variant example: font-variant: small-caps; values: "normal", "small-caps", or "inherit"
  • 42. 3. font-weight example: font-weight: bold; values: "normal", "bold", "bolder", "lighter", 4. font-size example: font-size: 12px; values: fixed: pixels (ie 12px) relative: percents (ie 100%) and ems (ie 1.5em)
  • 43. 5. font-family example: font-family: Corbel,'Helvetica Neue', Helvetica, Arial, sans-serif; Computers don't all have the same fonts installed...so provide alternatives Specific to general, in a comma-separated list. Fonts with two-word names are in quotes
  • 44. BONUS FONT PROPERTIES! 6. text-transform example: text-transform: uppercase; values: "capitalize", "uppercase", "lowercase", or "none" 7. line-height example: line-height: 1.5; values: numbers, percents, pixels, or "ems"
  • 45. SHORTHAND FONT DECLARATION example: font: italic small-caps bold 34px/150% "Times New Roman", Times, serif; font-style → font-variant → font-weight → font-size / line height → font-family you must declare at minimum the font-size and font-family example: font: 34px "Times New Roman", Times, serif;
  • 46. LET'S CODE IT! Add the shorthand font rule to your heading h1 { font: italic bold 34px Corbel,'Helvetica Neue', Helvetica, Arial, sans-serif; }
  • 47. CASCADING Styles "cascade" down until changed p{ color:blue; font-family:'Helvetica'; } .red{ color:red; } #special{ font-family:Arial; } <p>Paragraph</p> <pclass="green">Paragraph</p> <pclass="red">Paragraph</p> <pclass="red"id="special">Paragraph</p>
  • 48. CSS PROPERTIES Many CSS properties have self-explanatory names: background-color font-family font-size color width height https://developer.mozilla.org/en- US/docs/Web/CSS/Reference Comprehensive list of all CSS properties: