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

IPW 3rd Course - CSS
IPW 3rd Course - CSSIPW 3rd Course - CSS
IPW 3rd Course - CSS
Vlad Posea
 
Artdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group ProjectsArtdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group Projects
guestca5654
 

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 13
Amanda Case
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
Ismaciil2
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
Só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

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
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...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 

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