SlideShare une entreprise Scribd logo
1  sur  24
FWD - Week 2
Fundamentals of Web Design

Course Director: Terry Weber
Agenda
 Review Week 2 Assignments
 Content Management Systems
 HTML & CSS
 Open Discussion
Week 2 Assignments
   Discussion Board: Content Management
    Systems
    ◦ Initial post due Wednesday
    ◦ Second post due Monday
   A Minimal HTML & CSS Document - due
    Monday
    ◦ Select Aptana or Dreamweaver CS5 to use
    ◦ Watch video tutorial
    ◦ Zip up and submit to FSO
   Blog - due Monday
    ◦ Add RSS widget
    ◦ Add RSS feed
Content Management
Systems
   Types of CMS
    ◦   General purpose
    ◦   Blog
    ◦   E-commerce
    ◦   Discussion Forums
    ◦   Photo and video galleries
Content Management
Systems
   Open source vs. closed
    ◦ Consider:
        Availability of documentation
        Number of developers
        Add-on modules
        Security
        Support
        Integration with the company’s other software
         (e.g., CRM)
HTML Tags
-   Based on tags (“markup” language)
-   Most tags have a beginning and end:
     - <p>Text here…</p>


     -   Beginning tag in brackets:<p>

     -   Ending tag in brackets with a slash
         after the first bracket: </p>
Structure of an HTML5 Page
Most Common HTML Tags
-   <div>…</div>
    -   Div (a “bucket” for content)


-   <p>…</p>
    -   Paragraph (text)


-   <span>…</span>
    -   Used inline, such as within a <p> tag to
        change the style.
Most Common HTML Tags
-   <h1>Heading 1</h1>

-   <h2>Heading 2</h2>

-   <h3>Heading 3</h3>

-   Up to <h6>Heading 6</h6>
HTML Tag Examples
Cascading Style Sheets
(CSS)
-   Tells the browser:
     - where content should be placed on the
       page
     - how it should look (color, font style,
       borders, background image, etc.)
CSS Rule
Property/value pair within curly braces:
Applying CSS
   HTML tags

   IDs
      One per page


   Classes
      Multiple per page (commonly used
       styles)
CSS Selectors – HTML Tags
To style all “p” tags touse a red font color:

 p {color: red;}

Result:
<p>Allof the font in the “p” tag is
 red.</p>
CSS Selectors – IDs
To style one specific “p” tag on the page use a
  “#” sign and assign it an “id”:

  p#footer {color: red;}

Result:
<p>The font in this regular “p” tag is black.</p>
<p id=“footer”>Allof the font in the “footer” p
  tag is red.</p>
CSS Selectors – Classes
To style certain “p” tags on the page use a “.”
  sign and assign it a “class”:

  p.summary{color: red;}

Result:
<p class=“summary”>All of the font in this
  “summary” p tag is red.</p>
<p>The font in this regular “p” tag is black.</p>
<p class=“summary”>Allof the font in this
  “summary” p tag is red.</p>
CSS Code Can Be Used
 Internal
    In the “<head>” area of the HTML page
 Inline
    Within an HTML tag (p, div, span)
 External
    In a separate .css file
CSS Examples – On HTML
Page
<html>
   <head>
   <meta charset=“utf-8”>
   <title>Title of page</title>
   <style>
      p {color: red;}
   </style>
   </head>
   <body>
   <p>This font is red.</p>
   </body>
</html>
CSS Examples – Inline
<html>
    <head>
    <meta charset=“utf-8”>
    <title>Title of page</title>
    <style>
        p {color: red;}
    </style>
    </head>
    <body>
    <p>
    This font is <span style=“color:blue;”>blue</span>.
    </p>
    </body>
</html>
CSS Examples – External
<html>
   <head>
   <meta charset=“utf-8”>
   <title>Title of page</title>
   <link href="css/style.css" rel="stylesheet"
     type="text/css" media="all" />
   </head>
   <body>
   <p>This font is red.</p>
   </body>
</html>
Color Theory
Red:        Passion, Love, Anger
Orange:     Energy, Happiness, Vitality
Yellow:     Happiness, Hope, Deceit
Green:      New Beginnings, Abundance, Nature
Blue:          Calm, Responsible, Sadness
Purple:     Creativity, Royalty, Wealth
Black:      Mystery, Elegance, Evil
Gray:       Moody, Conservative, Formality
White:      Purity, Cleanliness, Virtue
Brown:      Nature, Wholesomeness,
Dependability
Tan/Beige: Conservative, Piety, Dull
Cream:      Calm, Elegant, Purity
Color Theory
   http://kuler.adobe.com
Typography
   Sans-serif:
      {font-family: Arial, Helvetica, sans-serif}
   Serif:
      {font-family: “Times New Roman”, serif}
   http://font-family.com/
Open Discussion
   Wimba = Wednesdayat 7 pm EST

Contenu connexe

Tendances (20)

Html -2
Html -2Html -2
Html -2
 
Cascade.ss
Cascade.ssCascade.ss
Cascade.ss
 
PHP - Introduction to PHP CSS
PHP -  Introduction to PHP CSSPHP -  Introduction to PHP CSS
PHP - Introduction to PHP CSS
 
TUTORIAL DE CSS 2.0
TUTORIAL DE CSS 2.0TUTORIAL DE CSS 2.0
TUTORIAL DE CSS 2.0
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
HTML
HTMLHTML
HTML
 
6. CSS
6. CSS6. CSS
6. CSS
 
Html
HtmlHtml
Html
 
IPW 3rd Course - CSS
IPW 3rd Course - CSSIPW 3rd Course - CSS
IPW 3rd Course - CSS
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Css module1
Css module1Css module1
Css module1
 
Css inclusion
Css   inclusionCss   inclusion
Css inclusion
 
Html
HtmlHtml
Html
 
Artdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group ProjectsArtdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group Projects
 
Html
HtmlHtml
Html
 
HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
 
Css Founder.com | Cssfounder se
Css Founder.com | Cssfounder seCss Founder.com | Cssfounder se
Css Founder.com | Cssfounder se
 
CSS Refresher
CSS RefresherCSS Refresher
CSS Refresher
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 

Similaire à Fwd week2 tw-20120903

LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13Amanda Case
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1 beretta21
 
Web Development Using CSS3
Web Development Using CSS3Web Development Using CSS3
Web Development Using CSS3Anjan Mahanta
 
Web Development Using CSS3
Web Development Using CSS3Web Development Using CSS3
Web Development Using CSS3Anjan Mahanta
 
Web Design Course: CSS lecture 2
Web Design Course: CSS  lecture 2Web Design Course: CSS  lecture 2
Web Design Course: CSS lecture 2Gheyath M. Othman
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshMukesh Kumar
 
A quick guide to Css and java script
A quick guide to Css and  java scriptA quick guide to Css and  java script
A quick guide to Css and java scriptAVINASH KUMAR
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptIsmaciil2
 
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptTusharTikia
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2Sónia
 

Similaire à Fwd week2 tw-20120903 (20)

LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13
 
Css1
Css1Css1
Css1
 
CSS notes
CSS notesCSS notes
CSS notes
 
Turorial css
Turorial cssTurorial css
Turorial css
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
 
Web Development Using CSS3
Web Development Using CSS3Web Development Using CSS3
Web Development Using CSS3
 
Web Development Using CSS3
Web Development Using CSS3Web Development Using CSS3
Web Development Using CSS3
 
Lecture-6.pptx
Lecture-6.pptxLecture-6.pptx
Lecture-6.pptx
 
Web Design Course: CSS lecture 2
Web Design Course: CSS  lecture 2Web Design Course: CSS  lecture 2
Web Design Course: CSS lecture 2
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
 
A quick guide to Css and java script
A quick guide to Css and  java scriptA quick guide to Css and  java script
A quick guide to Css and java script
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
 
css1.ppt
css1.pptcss1.ppt
css1.ppt
 
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
 
CSS1.pptx
CSS1.pptxCSS1.pptx
CSS1.pptx
 
Thuray css3
Thuray css3Thuray css3
Thuray css3
 
AK css
AK cssAK css
AK css
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
 
Css starting
Css startingCss starting
Css starting
 

Dernier

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 

Dernier (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

Fwd week2 tw-20120903

  • 1. FWD - Week 2 Fundamentals of Web Design Course Director: Terry Weber
  • 2. Agenda  Review Week 2 Assignments  Content Management Systems  HTML & CSS  Open Discussion
  • 3. Week 2 Assignments  Discussion Board: Content Management Systems ◦ Initial post due Wednesday ◦ Second post due Monday  A Minimal HTML & CSS Document - due Monday ◦ Select Aptana or Dreamweaver CS5 to use ◦ Watch video tutorial ◦ Zip up and submit to FSO  Blog - due Monday ◦ Add RSS widget ◦ Add RSS feed
  • 4. Content Management Systems  Types of CMS ◦ General purpose ◦ Blog ◦ E-commerce ◦ Discussion Forums ◦ Photo and video galleries
  • 5. Content Management Systems  Open source vs. closed ◦ Consider:  Availability of documentation  Number of developers  Add-on modules  Security  Support  Integration with the company’s other software (e.g., CRM)
  • 6. HTML Tags - Based on tags (“markup” language) - Most tags have a beginning and end: - <p>Text here…</p> - Beginning tag in brackets:<p> - Ending tag in brackets with a slash after the first bracket: </p>
  • 7. Structure of an HTML5 Page
  • 8. Most Common HTML Tags - <div>…</div> - Div (a “bucket” for content) - <p>…</p> - Paragraph (text) - <span>…</span> - Used inline, such as within a <p> tag to change the style.
  • 9. Most Common HTML Tags - <h1>Heading 1</h1> - <h2>Heading 2</h2> - <h3>Heading 3</h3> - Up to <h6>Heading 6</h6>
  • 11. Cascading Style Sheets (CSS) - Tells the browser: - where content should be placed on the page - how it should look (color, font style, borders, background image, etc.)
  • 12. CSS Rule Property/value pair within curly braces:
  • 13. Applying CSS  HTML tags  IDs  One per page  Classes  Multiple per page (commonly used styles)
  • 14. CSS Selectors – HTML Tags To style all “p” tags touse a red font color: p {color: red;} Result: <p>Allof the font in the “p” tag is red.</p>
  • 15. CSS Selectors – IDs To style one specific “p” tag on the page use a “#” sign and assign it an “id”: p#footer {color: red;} Result: <p>The font in this regular “p” tag is black.</p> <p id=“footer”>Allof the font in the “footer” p tag is red.</p>
  • 16. CSS Selectors – Classes To style certain “p” tags on the page use a “.” sign and assign it a “class”: p.summary{color: red;} Result: <p class=“summary”>All of the font in this “summary” p tag is red.</p> <p>The font in this regular “p” tag is black.</p> <p class=“summary”>Allof the font in this “summary” p tag is red.</p>
  • 17. CSS Code Can Be Used  Internal  In the “<head>” area of the HTML page  Inline  Within an HTML tag (p, div, span)  External  In a separate .css file
  • 18. CSS Examples – On HTML Page <html> <head> <meta charset=“utf-8”> <title>Title of page</title> <style> p {color: red;} </style> </head> <body> <p>This font is red.</p> </body> </html>
  • 19. CSS Examples – Inline <html> <head> <meta charset=“utf-8”> <title>Title of page</title> <style> p {color: red;} </style> </head> <body> <p> This font is <span style=“color:blue;”>blue</span>. </p> </body> </html>
  • 20. CSS Examples – External <html> <head> <meta charset=“utf-8”> <title>Title of page</title> <link href="css/style.css" rel="stylesheet" type="text/css" media="all" /> </head> <body> <p>This font is red.</p> </body> </html>
  • 21. Color Theory Red: Passion, Love, Anger Orange: Energy, Happiness, Vitality Yellow: Happiness, Hope, Deceit Green: New Beginnings, Abundance, Nature Blue: Calm, Responsible, Sadness Purple: Creativity, Royalty, Wealth Black: Mystery, Elegance, Evil Gray: Moody, Conservative, Formality White: Purity, Cleanliness, Virtue Brown: Nature, Wholesomeness, Dependability Tan/Beige: Conservative, Piety, Dull Cream: Calm, Elegant, Purity
  • 22. Color Theory  http://kuler.adobe.com
  • 23. Typography  Sans-serif:  {font-family: Arial, Helvetica, sans-serif}  Serif:  {font-family: “Times New Roman”, serif}  http://font-family.com/
  • 24. Open Discussion  Wimba = Wednesdayat 7 pm EST