SlideShare une entreprise Scribd logo
1  sur  31
ARTDM 171, Week3:
 XHMTL Tags + Group
     Projects
          Gilbert Guerrero
         gguerrero@dvc.edu
gilbertguerrero.com/blog/artdm-171/
Turn in homework

• If you uploaded your file to your
  xtreemhost.com account:
 ‣ send me a link to your Web page
• If you did not upload the file:
 ‣ please stay after class and be sure
   to upload it and send me the link
Create a new folder in
 Week3 called html
Open Dreamweaver
Site Management
• Define a new site using the Advanced
  mode.
• Set the html folder as the local root.
• You must do this for
 ‣ every homework assignment
 ‣ every new site
 ‣ whenever you change computers (such
   as from home to school).
Your Local Site and Your
      Remote Site
Directory Structure

• 
The Magical index.html
        File
            
Absolute URLs
http://www.mysite.com/folder/filename.html


• Begins with http://
• Could be a file on your own site or
  someone elses site.
Relative URLs
•   filename.html
    ‣   Look for a file in the same folder
•   folder/filename.html
    ‣   Look one level deep, within a folder for the file
•   ../folder/filename.html
    ‣   Go up a level, then down into the folder for the file
•   /filename.html  or /folder/filename.html
    ‣    Go to top (root) of the site and look for the folders
        or files
XHTML Tags
     
XHTML Reference
http://xhtml.com/en/xhtml/reference/
Create a new page in
   Dreamweaver
           
Tags used for Page
Properties
 • <!DOCTYPE > - Defines the document type
 • <html></html> - Starts and ends the
    document
•   <head></head> - HTML Header. Comes after
    the <html> tag and before the <body> tag
•   <title></title> - HTML Title, the name of the
    document
•   <body></body> - Contains your visible
    content
Meta Tags – <meta />
•   <meta /> - Meta tags appear between the <head> tags.
    Used for page description, keywords, and other data.
•   Examples:
    ‣   <meta http-equiv="Content-Type" content="text/html;
        charset=UTF-8" />
    ‣   <meta name="keywords" content="design, technology,
        Web" /> 
    ‣   <meta name="description" content="This site is about
        bread." />
    ‣   <meta name="robots" content="noindex, nofollow" />
•   Using the robots meta tag: Google Webmaster Central
    Blog
Basic Tags
•   <p></p> - Paragraph.
•   <br /> - Line break. This is an empty tag. Always
    end it with a space and a forward slash.
•   <em></em> <strong></strong> - Emphasis, Stonger
    emphasis. These are known as Idiomatic Elements.
•    <i></i> <b></b> - Bold, Italic. These are
    Typographic Elements. They help to add style and
    texture to a page. (In this class, our preference is
    toward <em> and <strong>.)
•   <h1></h1> <h2></h2> <h3></h3> - Headers. Helps
    with Search Engine Optimization.
<a></a> - Anchor
•   Link to an external Web site:
    ‣   <a href="http://www.dvc.edu">DVC</a>
•   Link to a Web page on your own site:
    ‣   <a href="bread.html">My Page About Bread</a>
    ‣   <a href="about/history.html">History of Bread</a>
•   Hooks (invisible):
    ‣   <a name="croissants"></a>
•   Link to the hook:
    ‣   <a href="index.html#croissants">Croissants</a>
<img /> - Image

• <img src="images/file.jpg"
  border="0" height="10" width="10" /> 
• Border, Width and Height are
  optional.
<ul>, <ol> — Lists
•   Unordered Lists (Bulleted)
    <ul>
            <li>Eggs</li>
            <li>Milk</li>
            <li>Potatoes</li>
    </ul>
•   Ordered Lists (Numbered)
    <ol>
            <li>Eggs</li>
            <li>Milk</li>
            <li>Potatoes</li>
    </ol>
&nbsp; — non breaking
        space
<table> — Table
• <table></table> - Table. Encloses your
  table. You can set the width (Pixels or
  Percentage%), border, and cellpadding and
  cellspacing as attributes.
• <tr></tr> - Row. Encloses a row in your
  table.
• <td></td> - Cell. Encloses what's in each
  cell of the table. These also create your
  columns. Make sure you have the same
  number of cells in each row.
Table Example
 <table width="540" border="0" cellpadding="0"
 cellspacing="0">
     <tr>
         <td valign="top" width="15%">column 1</td>
         <td>column 2</td>
         <td>column 3</td>
     </tr>
     <tr>
         <td>Eggs</td>
         <td>Milk</td>
         <td>Potatoes</td>
     </tr>
 </table>
Fonts
•   For fonts, colors, and sizes, use CSS. 
•   Placed between the <head></head> tags
•   <style type="text/css></style> - Style tags. Enclose
    your CSS code in these.
•   What about the FONT tag?
    ‣   <font> tag is no longer used in todayʼs World Wide
        Web.
•   Page Elements
    ‣   CSS uses page elements to specify fonts.  You can
        set a font on any page element, body, h1, p, a,...
Page Properties...
Dreamweaver fonts + CSS
Basic Stylesheet
 <style type="text/css">
 <!--
 body, td, th {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 12px;
     color: #996600;
 }
 h1 {
     font-family: Georgia, Times New Roman, Times, serif;    
 font-size: 16px;
     color: #003366;
 }
 -->
 </style>
Group Projects
      Form groups
No less than 3 to a group
Group Project Files
Get them from the materials drive
Group Project Deadlines
•   Due next week:
    ‣   Group Name
    ‣   Group Members (names of people in group)
    ‣   Goals (significant change to design + layout)
    ‣   Choose one person to send an email to
        gguerrero@dvc.edu
•   Due by September 22 
    ‣   Presentation of Completed Site
Homework, due September 7
•   Read and follow along with Chapter 4
    ‣   Create a Web page using text from Project Gutenberg:
           Copy text and use paste special, p92
           Add headings, p94
           Apply HTML text styles, p99
           Add a preformated text, p100
           Indent text, p102
           Add a list, p105 and nested lists, p108
           Add special characters, 109
•   Email Group Project answers
Thursday

• You will have a sub for the next lab.
• Be nice to him!
Thank You

Contenu connexe

Tendances

Div Tag Tutorial
Div Tag TutorialDiv Tag Tutorial
Div Tag Tutorial
bav123
 
Basics tags for HTML
Basics tags for HTMLBasics tags for HTML
Basics tags for HTML
vidyamittal
 
Creating your first web page
Creating your first web pageCreating your first web page
Creating your first web page
cachs_computing
 

Tendances (20)

Basic Webpage
Basic WebpageBasic Webpage
Basic Webpage
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
 
Div Tag Tutorial
Div Tag TutorialDiv Tag Tutorial
Div Tag Tutorial
 
How to Make HTML and CSS Files
How to Make HTML and CSS FilesHow to Make HTML and CSS Files
How to Make HTML and CSS Files
 
HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)
HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)
HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)
 
Basics tags for HTML
Basics tags for HTMLBasics tags for HTML
Basics tags for HTML
 
HTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - IHTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - I
 
Creating your first web page
Creating your first web pageCreating your first web page
Creating your first web page
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 
How to update HTML files
How to update HTML filesHow to update HTML files
How to update HTML files
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpage
 
Learning Html
Learning HtmlLearning Html
Learning Html
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
Html for beginners
Html for beginnersHtml for beginners
Html for beginners
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Html
HtmlHtml
Html
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 

Similaire à Artdm171 Week3 Tags Group Projects

3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptxHTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
TEJASARGADE5
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
Maria S Rivera
 

Similaire à Artdm171 Week3 Tags Group Projects (20)

3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
 
Web-02-HTML.pptx
Web-02-HTML.pptxWeb-02-HTML.pptx
Web-02-HTML.pptx
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Bangla html
Bangla htmlBangla html
Bangla html
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
 
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptxHTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
 
Html coding
Html codingHtml coding
Html coding
 
Session4
Session4Session4
Session4
 
VAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptxVAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptx
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
02 HTML-01.pdf
02 HTML-01.pdf02 HTML-01.pdf
02 HTML-01.pdf
 
Lecture1and2
Lecture1and2Lecture1and2
Lecture1and2
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
ARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSSARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSS
 
J309-14 Week One
J309-14 Week OneJ309-14 Week One
J309-14 Week One
 
Learning html & dhtml
Learning html & dhtmlLearning html & dhtml
Learning html & dhtml
 
Industrial training report
Industrial training report Industrial training report
Industrial training report
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Dernier (20)

Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
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
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
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...
 

Artdm171 Week3 Tags Group Projects

  • 1. ARTDM 171, Week3: XHMTL Tags + Group Projects Gilbert Guerrero gguerrero@dvc.edu gilbertguerrero.com/blog/artdm-171/
  • 2. Turn in homework • If you uploaded your file to your xtreemhost.com account: ‣ send me a link to your Web page • If you did not upload the file: ‣ please stay after class and be sure to upload it and send me the link
  • 3. Create a new folder in Week3 called html
  • 5. Site Management • Define a new site using the Advanced mode. • Set the html folder as the local root. • You must do this for ‣ every homework assignment ‣ every new site ‣ whenever you change computers (such as from home to school).
  • 6. Your Local Site and Your Remote Site
  • 9. Absolute URLs http://www.mysite.com/folder/filename.html • Begins with http:// • Could be a file on your own site or someone elses site.
  • 10. Relative URLs • filename.html ‣ Look for a file in the same folder • folder/filename.html ‣ Look one level deep, within a folder for the file • ../folder/filename.html ‣ Go up a level, then down into the folder for the file • /filename.html  or /folder/filename.html ‣  Go to top (root) of the site and look for the folders or files
  • 13. Create a new page in Dreamweaver  
  • 14. Tags used for Page Properties • <!DOCTYPE > - Defines the document type • <html></html> - Starts and ends the document • <head></head> - HTML Header. Comes after the <html> tag and before the <body> tag • <title></title> - HTML Title, the name of the document • <body></body> - Contains your visible content
  • 15. Meta Tags – <meta /> • <meta /> - Meta tags appear between the <head> tags. Used for page description, keywords, and other data. • Examples: ‣ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> ‣ <meta name="keywords" content="design, technology, Web" />  ‣ <meta name="description" content="This site is about bread." /> ‣ <meta name="robots" content="noindex, nofollow" /> • Using the robots meta tag: Google Webmaster Central Blog
  • 16. Basic Tags • <p></p> - Paragraph. • <br /> - Line break. This is an empty tag. Always end it with a space and a forward slash. • <em></em> <strong></strong> - Emphasis, Stonger emphasis. These are known as Idiomatic Elements. •  <i></i> <b></b> - Bold, Italic. These are Typographic Elements. They help to add style and texture to a page. (In this class, our preference is toward <em> and <strong>.) • <h1></h1> <h2></h2> <h3></h3> - Headers. Helps with Search Engine Optimization.
  • 17. <a></a> - Anchor • Link to an external Web site: ‣ <a href="http://www.dvc.edu">DVC</a> • Link to a Web page on your own site: ‣ <a href="bread.html">My Page About Bread</a> ‣ <a href="about/history.html">History of Bread</a> • Hooks (invisible): ‣ <a name="croissants"></a> • Link to the hook: ‣ <a href="index.html#croissants">Croissants</a>
  • 18. <img /> - Image • <img src="images/file.jpg" border="0" height="10" width="10" />  • Border, Width and Height are optional.
  • 19. <ul>, <ol> — Lists • Unordered Lists (Bulleted) <ul> <li>Eggs</li> <li>Milk</li> <li>Potatoes</li> </ul> • Ordered Lists (Numbered) <ol> <li>Eggs</li> <li>Milk</li> <li>Potatoes</li> </ol>
  • 20. &nbsp; — non breaking space
  • 21. <table> — Table • <table></table> - Table. Encloses your table. You can set the width (Pixels or Percentage%), border, and cellpadding and cellspacing as attributes. • <tr></tr> - Row. Encloses a row in your table. • <td></td> - Cell. Encloses what's in each cell of the table. These also create your columns. Make sure you have the same number of cells in each row.
  • 22. Table Example <table width="540" border="0" cellpadding="0" cellspacing="0">     <tr>         <td valign="top" width="15%">column 1</td>         <td>column 2</td>         <td>column 3</td>     </tr>     <tr>         <td>Eggs</td>         <td>Milk</td>         <td>Potatoes</td>     </tr> </table>
  • 23. Fonts • For fonts, colors, and sizes, use CSS.  • Placed between the <head></head> tags • <style type="text/css></style> - Style tags. Enclose your CSS code in these. • What about the FONT tag? ‣ <font> tag is no longer used in todayʼs World Wide Web. • Page Elements ‣ CSS uses page elements to specify fonts.  You can set a font on any page element, body, h1, p, a,...
  • 25. Basic Stylesheet <style type="text/css"> <!-- body, td, th {     font-family: Arial, Helvetica, sans-serif;     font-size: 12px;     color: #996600; } h1 {     font-family: Georgia, Times New Roman, Times, serif;     font-size: 16px;     color: #003366; } --> </style>
  • 26. Group Projects Form groups No less than 3 to a group
  • 27. Group Project Files Get them from the materials drive
  • 28. Group Project Deadlines • Due next week: ‣ Group Name ‣ Group Members (names of people in group) ‣ Goals (significant change to design + layout) ‣ Choose one person to send an email to gguerrero@dvc.edu • Due by September 22  ‣ Presentation of Completed Site
  • 29. Homework, due September 7 • Read and follow along with Chapter 4 ‣ Create a Web page using text from Project Gutenberg:  Copy text and use paste special, p92  Add headings, p94  Apply HTML text styles, p99  Add a preformated text, p100  Indent text, p102  Add a list, p105 and nested lists, p108  Add special characters, 109 • Email Group Project answers
  • 30. Thursday • You will have a sub for the next lab. • Be nice to him!

Notes de l'éditeur

  1. Click the expand button to see local and remote &amp;#xA0; &amp;#xA0; local on the right, remote on the left.&amp;#xA0; We&amp;#x2019;ll be sticking to local for now.&amp;#xA0; click the collapse button to return to normal
  2. &amp;#xA0; Create a new directory for each section of your website&amp;#xA0; Add a default document to each directory.&amp;#xA0; Must be named index.html&amp;#xA0; Create utilities directories, images, css, scripts, files, pdf&amp;#xA0; Use hyphens for multiple words.&amp;#xA0; No spaces allowed.&amp;#xA0; No illegal characters.
  3. &amp;#xA0;&amp;#xA0;
  4. &amp;#xA0;&amp;#xA0;
  5. Dreamweaver automatically generates most of this when you create a new document. 10 lines of code (including a blank line between head and body.) &amp;#xA0; Take a look at these tags in Dreamweaver in a basic HTML document.
  6. (Notice the attributes.)
  7. Class Exercise:&amp;#x2192;&amp;#xA0;&amp;#xA0; Add a page heading, paragraph, bold, italics, link, and an image. Use the image saved in the ARTDM-171 folder. (Drag and drop it into the images folder on your USB drive.)
  8. Get started with fonts and CSS in Dreamweaver by clicking Page Properties... in the property inspector.
  9. font-family - Font Family. Allows you to choose a font. Order them in priority. The user&apos;s Web browser will look on his or her computer for the first font and if it doesn&apos;t find it it will move on to the next. Arial and Times are pretty safe choices, though. &amp;#xA0; font-size - Font Size. Set a size based on Pixels (px), Percentages (%), Picas (pc), Points (pt), Ems (em), or, just type small, medium, or large.&amp;#xA0; color - Font Color. Set the color of your fonts. This does not affect the color of backgrounds or borders.&amp;#xA0; &amp;#xA0;All declarations end with a semi-colon (;) and are enclosed in curly brackets ({ }).