SlideShare una empresa de Scribd logo
1 de 46
Working with Text and Cascading Style Sheets
Unit Objectives
•
•
•
•
•
•
•
•
•
•

Create a new page
Import text
Set text properties
Create an unordered list
Understand Cascading Style Sheets
Create a rule in a new Cascading Style Sheet
Apply and edit a rule
Add rules to a Cascading Style Sheet
Attach a Cascading Style Sheet to a page
Check for spelling errors

Adobe Dreamweaver CS6 - Illustrated
Creating a New Page
1. Start Dreamweaver, open The Striped Umbrella Web site
2. Create a new blank HTML page
– Click File on the Menu bar, click New, click Blank Page
– Click HTML in the Page type column, click <none> in
the Layout column
– Click the Doctype list box, click HTML 5, click Create,
then click the Show Design view button if necessary
3. Click the Insert bar menu, click Common, click the
Images list arrow, then click Image
4. Browse to and open the website assets folder, double-click
su-banner.gif, type The Striped Umbrella banner in the
Alternate text box in the image tag Accessibility Attributes
dialog box, then click OK
Adobe Dreamweaver CS6 - Illustrated
Creating a New Page
6. Click to the right of the banner to deselect it
– (Win) press [enter]
– (Mac) press [Return]
– Repeat step 4 to open the select image source
dialog box, then navigate to the assets folder in
your unit_d Data Files folder
7. Double-click sea-spa_logo.png, type The Sea Spa
logo in the Alternate text box in the image tag
Accessibility
8. Click to the right of the logo to place the insertion point
on the spa.html page
Adobe Dreamweaver CS6 - Illustrated
Creating a New Page

Adobe Dreamweaver CS6 - Illustrated
Creating a New Page

Adobe Dreamweaver CS6 - Illustrated
Importing Text
1.

Import text
– (Win) Click File on the Menu bar, point to import, click
Word Document, browse to the folder where you store
your Unit D Data Files, then double-click spa.doc
2. Import text
– (Mac) Using Finder, navigate to spa.doc stored in your
unit_d data files folder, open spa.doc, select all, copy,
close spa.doc, then paste the copied text on the spa
page in Dreamweaver
3. Click commands on the Menu bar, then click clean up Word
HTML
4. Click to select each check box in the clean Up Word HTML
dialog box if necessary, click OK, then click OK again
Adobe Dreamweaver CS6 - Illustrated
Importing Text

Adobe Dreamweaver CS6 - Illustrated
Importing Text

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Importing options
– Use with Microsoft Office documents
– Import:
•
•
•
•

Text only
Text with structure
Text, structure, basic formatting
Text, structure, full formatting

– Option chosen depends on importance of original
structure and formatting

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Linking to Word or Excel documents
– Drag the Word or Excel document from its current
location to the place on the page you want the link
to appear
– Select the Create a link option button in the Insert
Document dialog box, then save the file in your local
site root folder so it will be uploaded when you
publish your site

Adobe Dreamweaver CS6 - Illustrated
Setting Text Properties
1. Click the HTML button on the Property inspector if
necessary, then click anywhere within the words The
Sea Spa Services
2. Click the Format list arrow, then click Heading 1
3. Repeat steps 1 and 2 to add the Heading 2 style to
Massages, Facials, and Body Treatments right under
the logo
4. Click after the word “Treatments”, insert a line break,
click the Show Code and Design views button on the
Document toolbar
5. Click the Show Design view button on the Document
toolbar, then save your work
Adobe Dreamweaver CS6 - Illustrated
Setting Text Properties

Adobe Dreamweaver CS6 - Illustrated
Design Matters
• Choosing fonts
– Sans-serif fonts are made up of plain characters
without any strokes at the top and bottom of letters
• Used frequently for headings and subheadings in printed
text

– Serif fonts are more ornate, with small extra
strokes at the top and bottom of the characters
• Easier to read in printed material because the extra
strokes lead your eye from one character to the next

Adobe Dreamweaver CS6 - Illustrated
Creating an Unordered List
1. Select the three service items and their descriptions
under the Massages heading
2. Click the Unordered List button on the HTML
Property inspector, then deselect the text
3. Repeat steps 1 and 2 to create unordered lists of the
spa service items under the Facials and Body
Treatments headings
4. Click to place the insertion point before the first item in
the first unordered list, then click the Show Code view
button on the Document toolbar
5. Click the Show Design view button on the Document
toolbar to return to Design View, then save your work
Adobe Dreamweaver CS6 - Illustrated
Creating an Unordered List

Adobe Dreamweaver CS6 - Illustrated
Design Matters
• Coding for the semantic web
– Semantic web refers to the way page content, such
as paragraph, text, or list items, can be coded to
emphasize their meaning to users
– Semantic markup, or coding to emphasize
meaning, is a way to incorporate good accessibility
practice
– CSS styles affect the appearance of web page
content while semantic markup enhances the
meaning of the content

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Using ordered lists
– Contain numbered or lettered items
• Must appear in a particular order

– Dreamweaver uses several options for number
styles
• Roman
• Arabic

Adobe Dreamweaver CS6 - Illustrated
Understanding Cascading Style Sheets

• Advantages of using CSS
– Save time
– Provide continuity across a website

• CSS classified by location
–
–
–
–

External style sheet
Internal style sheet
Embedded style
Inline style

Adobe Dreamweaver CS6 - Illustrated
Understanding Cascading Style Sheets

• CSS classified by function
– Class style
– HTML style
– Advanced or Compound style

– The CSS Styles panel
– Use the CSS Styles panel to create, edit, and
apply rules
– The panel has two views:
– All (Document) Mode
– Current Selection Mode

Adobe Dreamweaver CS6 - Illustrated
Understanding Cascading Style Sheets

Adobe Dreamweaver CS6 - Illustrated
Understanding Cascading Style Sheets

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Using the CSS and HTML Property inspector
– Apply CSS styles using the CSS or HTML Property
inspector
– First select the element
– Apply a style
– You can change back and forth between the two
Property inspectors

Adobe Dreamweaver CS6 - Illustrated
Creating a Rule in a New Cascading Style Sheet

1. Click Window on the Menu bar
– Click the Switch to All (Document) Mode button
under the CSS styles panel tab
2. Click the New CSS Rule button on the CSS Styles
panel
– Click the Selector Type list arrow, select Class,
then type bold_blue in the Selector Name text box
3. Click the Rule Definition list arrow, click (New Style
Sheet File), click OK
4. Type su_styles in the File name text box (Win) or the
Save As text box (Mac), then click Save
Adobe Dreamweaver CS6 - Illustrated
Creating a Style in a New Cascading Style Sheet

5. Click the Font-family list arrow
– Click Arial, Helvetica, sans-serif
– Click Font-size list arrow, click 14
– Keep size measurement as px
– Click Font-style list arrow, click normal
– Click Font-weight list arrow, click bold
6. Click the Color box to open the color picker, click
#006, then click OK, then click the Refresh button on
the Files panel
7. Click the Show Code view button on the Document
toolbar
8. Click File on the Menu bar, then click Save All
Adobe Dreamweaver CS6 - Illustrated
Creating a Style in a New Cascading Style Sheet

Adobe Dreamweaver CS6 - Illustrated
Creating a Style in a New Cascading Style Sheet

Adobe Dreamweaver CS6 - Illustrated
Applying and Editing a Rule
1. Click the Show Design view button on the Document
toolbar
– Then click the CSS button
2. Select Massages, click the Targeted Rule list arrow
in the CSS Property inspector, click bold_blue
3. Repeat Step 2 to apply the bold_blue style to the
Facials and Body Treatment unordered list headings
4. Click the bold_blue rule in the CSS Styles panel, then
click the Edit Rule button on the CSS Styles panel
5. Click the Font-size arrow, click 16, click OK, then
deselect the text
6. Save your work using the Save All command
Adobe Dreamweaver CS6 - Illustrated
Applying and Editing a Style

Adobe Dreamweaver CS6 - Illustrated
Applying and Editing a Style

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Understanding CSS Code
– Format page content other than text
• Background, borders, lists, and images

– CSS Styles consist of a selector and a declaration

Adobe Dreamweaver CS6 - Illustrated
Adding Rules to a Cascading Style Sheet

1. Click the New CSS Rule button on the CSS Styles
Panel
2. Click the Selector Type list arrow, click Tag
(redefines an HTML element)
– Type h1 in the Selector Name text box, click the
Rule Definition list arrow
– Click su_styles.css, then click OK
3. Click the Font-family list arrow, then click Arial,
Helvetica, sans-serif, click the Font-size list arrow,
click 24, click the Font-weight list arrow, click bold

Adobe Dreamweaver CS6 - Illustrated
Adding Rules to a Cascading Style Sheet

4. Repeat steps 1 through 3 to create a rule to
modify the <h2> tag using the following settings:
Font-family: Arial, Helvetica, sans-serif; Fontsize: 18; Font-weight: normal
5. Click File on the Menu bar, then click Save All

Adobe Dreamweaver CS6 - Illustrated
Adding Rules to a Cascading Style Sheet

Adobe Dreamweaver CS6 - Illustrated
Adding Rules to a Cascading Style Sheet

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Using font combinations in styles
– When setting rule properties for text:
• Apply font combinations

– Ensures similar font will be applied if primary one is
unavailable
– Example: Arial, Helvetica, sans-serif
• Browser will first check the user’s system for Arial, then
Helvetica, etc.

– Another option is external font libraries

Adobe Dreamweaver CS6 - Illustrated
Attaching a Cascading Style Sheet to a Page

1. Open the index.html page
2. Click the Attach Style Sheet button on the CSS
Styles panel
3. Click Browse next to the File/URL text box
– Click su_styles.css in the Select Style Sheet File
dialog box if necessary
– Click OK (Win) or Open (Mac), then click OK
4. Right-click the body_text rule under <style> in the
CSS Styles panel in the internal style sheet, click Move
CSS Rules, click OK

Adobe Dreamweaver CS6 - Illustrated
Attaching a Cascading Style Sheet to a Page

5. Repeat step 4 to move the nav_bar, small_text, and
body rules to the external style sheet, delete the
remaining <style> tag in the CSS Styles panel, save all
files, then close the index page
6. Select the first unordered list on the spa page, click
the Targeted Rule text box on the CSS Property
inspector, then click body_text
7. Repeat step 6 to apply the body_text rule to the rest of
the text on the page that does not have a rule applied,
click File on the Menu bar, then click Save All

Adobe Dreamweaver CS6 - Illustrated
Attaching a Cascading Style Sheet to a Page

Adobe Dreamweaver CS6 - Illustrated
Design Matters
• The evolution of CSS3
– Cascading Style Sheets revisions are referenced by
“levels” rather than “versions”
– CSS Level 1 is obsolete today. CSS Level 2 is still
used, but CSS Level 3 is the latest W3C (World
Wide Web Consortium) standard
– With CSS3, several properties are available that
promote website accessibility such as the @fontface rule

Adobe Dreamweaver CS6 - Illustrated
Checking for Spelling Errors
1. Place the insertion point in front of The Sea Spa
Services heading
2. Click Commands on the Menu bar, then click Check
Spelling
3. Click massage. in the Suggestions list if necessary,
click Change, then click Ignore if it stops on any other
words that you know are spelled correctly
4. Click OK

Adobe Dreamweaver CS6 - Illustrated
Checking for Spelling Errors
5. Add the page title The Sea Spa to the Title text box on
the Document toolbar
6. Click File on the Menu bar, click Save, click the
Preview/Debug in browser icon, then preview the
spa page in your browser window
7. Close your browser, close all open pages, then exit
Dreamweaver

Adobe Dreamweaver CS6 - Illustrated
Checking for Spelling Errors

Adobe Dreamweaver CS6 - Illustrated
Checking for Spelling Errors

Adobe Dreamweaver CS6 - Illustrated
Clues to Use
• Using Find and Replace
– Located on the Edit menu
– Search for text in Design or Code view
– Similar to Find and Replace commands in word
processing programs
– Useful to search for coding errors

Adobe Dreamweaver CS6 - Illustrated
Unit Summary
•
•
•
•
•
•
•
•
•
•

Create a new page
Import text
Set text properties
Create an unordered list
Understand Cascading Style Sheets
Create a rule in a new Cascading Style Sheet
Apply and edit a rule
Add rules to a Cascading Style Sheet
Attach a Cascading Style Sheet to a Page
Check for spelling errors

Adobe Dreamweaver CS6 - Illustrated

Más contenido relacionado

La actualidad más candente

Unit a adobe dreamweaver cs6
Unit a adobe dreamweaver cs6Unit a adobe dreamweaver cs6
Unit a adobe dreamweaver cs6Krista Lawrence
 
Unit b adobe dreamweaver cs6
Unit b adobe dreamweaver cs6Unit b adobe dreamweaver cs6
Unit b adobe dreamweaver cs6Krista Lawrence
 
Dreamweaver cs6 step by step
Dreamweaver cs6 step by stepDreamweaver cs6 step by step
Dreamweaver cs6 step by stepzoran Jelinek
 
Dreamweaver - Introduction AND WALKTHROUGH
Dreamweaver - Introduction AND WALKTHROUGHDreamweaver - Introduction AND WALKTHROUGH
Dreamweaver - Introduction AND WALKTHROUGHSahil Bansal
 
How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 Salman Memon
 
Developing a Web Page
Developing a Web PageDeveloping a Web Page
Developing a Web PageFrank Fucile
 
Start a Blog: Module 6
Start a Blog: Module 6Start a Blog: Module 6
Start a Blog: Module 6Merri Dennis
 
Basic Web Design In Dreamweaver
Basic Web Design In DreamweaverBasic Web Design In Dreamweaver
Basic Web Design In Dreamweaverjcharnin
 
WordPress beginners course part 1
WordPress beginners course part 1WordPress beginners course part 1
WordPress beginners course part 1Naomi Klein
 
Macromedia Dreamweaver 8
Macromedia Dreamweaver 8Macromedia Dreamweaver 8
Macromedia Dreamweaver 8Jeff Wood
 
WordPress HTML, CSS & Child Themes
WordPress HTML, CSS & Child ThemesWordPress HTML, CSS & Child Themes
WordPress HTML, CSS & Child ThemesMichelle Ames
 
CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01mwarrick
 
Complete word press tutorial
Complete word press tutorialComplete word press tutorial
Complete word press tutorialwp-enlight
 

La actualidad más candente (19)

Unit a adobe dreamweaver cs6
Unit a adobe dreamweaver cs6Unit a adobe dreamweaver cs6
Unit a adobe dreamweaver cs6
 
Unit b adobe dreamweaver cs6
Unit b adobe dreamweaver cs6Unit b adobe dreamweaver cs6
Unit b adobe dreamweaver cs6
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Dreamweaver cs6 step by step
Dreamweaver cs6 step by stepDreamweaver cs6 step by step
Dreamweaver cs6 step by step
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Dreamweaver - Introduction AND WALKTHROUGH
Dreamweaver - Introduction AND WALKTHROUGHDreamweaver - Introduction AND WALKTHROUGH
Dreamweaver - Introduction AND WALKTHROUGH
 
How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 How to Use Dreamweaver cs6
How to Use Dreamweaver cs6
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Developing a Web Page
Developing a Web PageDeveloping a Web Page
Developing a Web Page
 
Start a Blog: Module 6
Start a Blog: Module 6Start a Blog: Module 6
Start a Blog: Module 6
 
Basic Web Design In Dreamweaver
Basic Web Design In DreamweaverBasic Web Design In Dreamweaver
Basic Web Design In Dreamweaver
 
WordPress beginners course part 1
WordPress beginners course part 1WordPress beginners course part 1
WordPress beginners course part 1
 
Chapter 12
Chapter 12Chapter 12
Chapter 12
 
Dreamweawer
DreamweawerDreamweawer
Dreamweawer
 
Macromedia Dreamweaver 8
Macromedia Dreamweaver 8Macromedia Dreamweaver 8
Macromedia Dreamweaver 8
 
WordPress HTML, CSS & Child Themes
WordPress HTML, CSS & Child ThemesWordPress HTML, CSS & Child Themes
WordPress HTML, CSS & Child Themes
 
Dreamweaver8
Dreamweaver8Dreamweaver8
Dreamweaver8
 
CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01
 
Complete word press tutorial
Complete word press tutorialComplete word press tutorial
Complete word press tutorial
 

Destacado (10)

Adobe audition cs6
Adobe audition cs6Adobe audition cs6
Adobe audition cs6
 
A2 question 4
A2 question 4A2 question 4
A2 question 4
 
A2 media question 2
A2 media question 2A2 media question 2
A2 media question 2
 
Adobe master collection cs6
Adobe master collection cs6Adobe master collection cs6
Adobe master collection cs6
 
Adobe audition. Eriberto Vargas Galvan
Adobe audition. Eriberto Vargas GalvanAdobe audition. Eriberto Vargas Galvan
Adobe audition. Eriberto Vargas Galvan
 
Presentation adobe audition
Presentation adobe auditionPresentation adobe audition
Presentation adobe audition
 
T1 e1 murillo-noelia
T1 e1 murillo-noeliaT1 e1 murillo-noelia
T1 e1 murillo-noelia
 
After effects-basics
After effects-basicsAfter effects-basics
After effects-basics
 
After effects
After effectsAfter effects
After effects
 
Adobe Audition 3.0
  Adobe Audition 3.0  Adobe Audition 3.0
Adobe Audition 3.0
 

Similar a Unit d adobe dreamweaver cs6

Website development using dreamweaver
Website development using dreamweaverWebsite development using dreamweaver
Website development using dreamweaverTekblink Jeeten
 
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docx
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docxModernize Microsoft Power Pages with OOTB Styles and Custom Styles.docx
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docxSharepoint Designs
 
Rh10 css presentation
Rh10 css presentationRh10 css presentation
Rh10 css presentationNeil Perlin
 
Rh10 css presentation
Rh10 css presentationRh10 css presentation
Rh10 css presentationNeil Perlin
 
Customizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceCustomizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceBharat Chaudhari
 
Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5seanoiii
 
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004brighteyes
 
The Anatomy of a WordPress File
The Anatomy of a WordPress FileThe Anatomy of a WordPress File
The Anatomy of a WordPress FileCharly McCracken
 
Create content template
Create content templateCreate content template
Create content templatevokeron
 
Le Wagon Tokyo | Build your Landing Page in 2 hours
Le Wagon Tokyo | Build your Landing Page in 2 hoursLe Wagon Tokyo | Build your Landing Page in 2 hours
Le Wagon Tokyo | Build your Landing Page in 2 hoursYannKlein2
 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25New Tricks
 
Le Wagon - Build your Landing Page in 2 hours
Le Wagon - Build your Landing Page in 2 hoursLe Wagon - Build your Landing Page in 2 hours
Le Wagon - Build your Landing Page in 2 hoursSandrine Ayral
 
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStart
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStartMadCap Flare Tips and Tricks - Scott DeLoach, ClickStart
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStartScott DeLoach
 
15 Howto Customization Look And Feel
15 Howto Customization Look And Feel15 Howto Customization Look And Feel
15 Howto Customization Look And FeelSWING Software
 
Dreamweaver Notes
Dreamweaver NotesDreamweaver Notes
Dreamweaver Notessmasi27
 

Similar a Unit d adobe dreamweaver cs6 (20)

Website development using dreamweaver
Website development using dreamweaverWebsite development using dreamweaver
Website development using dreamweaver
 
Lesson 20
Lesson 20Lesson 20
Lesson 20
 
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docx
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docxModernize Microsoft Power Pages with OOTB Styles and Custom Styles.docx
Modernize Microsoft Power Pages with OOTB Styles and Custom Styles.docx
 
microsoft-power-pages.docx
microsoft-power-pages.docxmicrosoft-power-pages.docx
microsoft-power-pages.docx
 
Rh10 css presentation
Rh10 css presentationRh10 css presentation
Rh10 css presentation
 
Rh10 css presentation
Rh10 css presentationRh10 css presentation
Rh10 css presentation
 
Webexpration2007 ii
Webexpration2007 iiWebexpration2007 ii
Webexpration2007 ii
 
Customizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceCustomizing the look and-feel of DSpace
Customizing the look and-feel of DSpace
 
Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5
 
E commerce-website
E commerce-websiteE commerce-website
E commerce-website
 
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
Using Stylesheets To Design A Web Site In Dreamweaver Mx 2004
 
The Anatomy of a WordPress File
The Anatomy of a WordPress FileThe Anatomy of a WordPress File
The Anatomy of a WordPress File
 
Create content template
Create content templateCreate content template
Create content template
 
Le Wagon Tokyo | Build your Landing Page in 2 hours
Le Wagon Tokyo | Build your Landing Page in 2 hoursLe Wagon Tokyo | Build your Landing Page in 2 hours
Le Wagon Tokyo | Build your Landing Page in 2 hours
 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25
 
Le Wagon - Build your Landing Page in 2 hours
Le Wagon - Build your Landing Page in 2 hoursLe Wagon - Build your Landing Page in 2 hours
Le Wagon - Build your Landing Page in 2 hours
 
Le Wagon - 2h Landing
Le Wagon - 2h LandingLe Wagon - 2h Landing
Le Wagon - 2h Landing
 
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStart
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStartMadCap Flare Tips and Tricks - Scott DeLoach, ClickStart
MadCap Flare Tips and Tricks - Scott DeLoach, ClickStart
 
15 Howto Customization Look And Feel
15 Howto Customization Look And Feel15 Howto Customization Look And Feel
15 Howto Customization Look And Feel
 
Dreamweaver Notes
Dreamweaver NotesDreamweaver Notes
Dreamweaver Notes
 

Último

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
 
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 MenDelhi Call girls
 
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
 
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 Processorsdebabhi2
 
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...Igalia
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
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 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 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 MenDelhi Call girls
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
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
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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 SolutionsEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 

Último (20)

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...
 
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
 
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
 
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
 
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...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
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 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 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
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
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
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 

Unit d adobe dreamweaver cs6

  • 1. Working with Text and Cascading Style Sheets
  • 2. Unit Objectives • • • • • • • • • • Create a new page Import text Set text properties Create an unordered list Understand Cascading Style Sheets Create a rule in a new Cascading Style Sheet Apply and edit a rule Add rules to a Cascading Style Sheet Attach a Cascading Style Sheet to a page Check for spelling errors Adobe Dreamweaver CS6 - Illustrated
  • 3. Creating a New Page 1. Start Dreamweaver, open The Striped Umbrella Web site 2. Create a new blank HTML page – Click File on the Menu bar, click New, click Blank Page – Click HTML in the Page type column, click <none> in the Layout column – Click the Doctype list box, click HTML 5, click Create, then click the Show Design view button if necessary 3. Click the Insert bar menu, click Common, click the Images list arrow, then click Image 4. Browse to and open the website assets folder, double-click su-banner.gif, type The Striped Umbrella banner in the Alternate text box in the image tag Accessibility Attributes dialog box, then click OK Adobe Dreamweaver CS6 - Illustrated
  • 4. Creating a New Page 6. Click to the right of the banner to deselect it – (Win) press [enter] – (Mac) press [Return] – Repeat step 4 to open the select image source dialog box, then navigate to the assets folder in your unit_d Data Files folder 7. Double-click sea-spa_logo.png, type The Sea Spa logo in the Alternate text box in the image tag Accessibility 8. Click to the right of the logo to place the insertion point on the spa.html page Adobe Dreamweaver CS6 - Illustrated
  • 5. Creating a New Page Adobe Dreamweaver CS6 - Illustrated
  • 6. Creating a New Page Adobe Dreamweaver CS6 - Illustrated
  • 7. Importing Text 1. Import text – (Win) Click File on the Menu bar, point to import, click Word Document, browse to the folder where you store your Unit D Data Files, then double-click spa.doc 2. Import text – (Mac) Using Finder, navigate to spa.doc stored in your unit_d data files folder, open spa.doc, select all, copy, close spa.doc, then paste the copied text on the spa page in Dreamweaver 3. Click commands on the Menu bar, then click clean up Word HTML 4. Click to select each check box in the clean Up Word HTML dialog box if necessary, click OK, then click OK again Adobe Dreamweaver CS6 - Illustrated
  • 10. Clues to Use • Importing options – Use with Microsoft Office documents – Import: • • • • Text only Text with structure Text, structure, basic formatting Text, structure, full formatting – Option chosen depends on importance of original structure and formatting Adobe Dreamweaver CS6 - Illustrated
  • 11. Clues to Use • Linking to Word or Excel documents – Drag the Word or Excel document from its current location to the place on the page you want the link to appear – Select the Create a link option button in the Insert Document dialog box, then save the file in your local site root folder so it will be uploaded when you publish your site Adobe Dreamweaver CS6 - Illustrated
  • 12. Setting Text Properties 1. Click the HTML button on the Property inspector if necessary, then click anywhere within the words The Sea Spa Services 2. Click the Format list arrow, then click Heading 1 3. Repeat steps 1 and 2 to add the Heading 2 style to Massages, Facials, and Body Treatments right under the logo 4. Click after the word “Treatments”, insert a line break, click the Show Code and Design views button on the Document toolbar 5. Click the Show Design view button on the Document toolbar, then save your work Adobe Dreamweaver CS6 - Illustrated
  • 13. Setting Text Properties Adobe Dreamweaver CS6 - Illustrated
  • 14. Design Matters • Choosing fonts – Sans-serif fonts are made up of plain characters without any strokes at the top and bottom of letters • Used frequently for headings and subheadings in printed text – Serif fonts are more ornate, with small extra strokes at the top and bottom of the characters • Easier to read in printed material because the extra strokes lead your eye from one character to the next Adobe Dreamweaver CS6 - Illustrated
  • 15. Creating an Unordered List 1. Select the three service items and their descriptions under the Massages heading 2. Click the Unordered List button on the HTML Property inspector, then deselect the text 3. Repeat steps 1 and 2 to create unordered lists of the spa service items under the Facials and Body Treatments headings 4. Click to place the insertion point before the first item in the first unordered list, then click the Show Code view button on the Document toolbar 5. Click the Show Design view button on the Document toolbar to return to Design View, then save your work Adobe Dreamweaver CS6 - Illustrated
  • 16. Creating an Unordered List Adobe Dreamweaver CS6 - Illustrated
  • 17. Design Matters • Coding for the semantic web – Semantic web refers to the way page content, such as paragraph, text, or list items, can be coded to emphasize their meaning to users – Semantic markup, or coding to emphasize meaning, is a way to incorporate good accessibility practice – CSS styles affect the appearance of web page content while semantic markup enhances the meaning of the content Adobe Dreamweaver CS6 - Illustrated
  • 18. Clues to Use • Using ordered lists – Contain numbered or lettered items • Must appear in a particular order – Dreamweaver uses several options for number styles • Roman • Arabic Adobe Dreamweaver CS6 - Illustrated
  • 19. Understanding Cascading Style Sheets • Advantages of using CSS – Save time – Provide continuity across a website • CSS classified by location – – – – External style sheet Internal style sheet Embedded style Inline style Adobe Dreamweaver CS6 - Illustrated
  • 20. Understanding Cascading Style Sheets • CSS classified by function – Class style – HTML style – Advanced or Compound style – The CSS Styles panel – Use the CSS Styles panel to create, edit, and apply rules – The panel has two views: – All (Document) Mode – Current Selection Mode Adobe Dreamweaver CS6 - Illustrated
  • 21. Understanding Cascading Style Sheets Adobe Dreamweaver CS6 - Illustrated
  • 22. Understanding Cascading Style Sheets Adobe Dreamweaver CS6 - Illustrated
  • 23. Clues to Use • Using the CSS and HTML Property inspector – Apply CSS styles using the CSS or HTML Property inspector – First select the element – Apply a style – You can change back and forth between the two Property inspectors Adobe Dreamweaver CS6 - Illustrated
  • 24. Creating a Rule in a New Cascading Style Sheet 1. Click Window on the Menu bar – Click the Switch to All (Document) Mode button under the CSS styles panel tab 2. Click the New CSS Rule button on the CSS Styles panel – Click the Selector Type list arrow, select Class, then type bold_blue in the Selector Name text box 3. Click the Rule Definition list arrow, click (New Style Sheet File), click OK 4. Type su_styles in the File name text box (Win) or the Save As text box (Mac), then click Save Adobe Dreamweaver CS6 - Illustrated
  • 25. Creating a Style in a New Cascading Style Sheet 5. Click the Font-family list arrow – Click Arial, Helvetica, sans-serif – Click Font-size list arrow, click 14 – Keep size measurement as px – Click Font-style list arrow, click normal – Click Font-weight list arrow, click bold 6. Click the Color box to open the color picker, click #006, then click OK, then click the Refresh button on the Files panel 7. Click the Show Code view button on the Document toolbar 8. Click File on the Menu bar, then click Save All Adobe Dreamweaver CS6 - Illustrated
  • 26. Creating a Style in a New Cascading Style Sheet Adobe Dreamweaver CS6 - Illustrated
  • 27. Creating a Style in a New Cascading Style Sheet Adobe Dreamweaver CS6 - Illustrated
  • 28. Applying and Editing a Rule 1. Click the Show Design view button on the Document toolbar – Then click the CSS button 2. Select Massages, click the Targeted Rule list arrow in the CSS Property inspector, click bold_blue 3. Repeat Step 2 to apply the bold_blue style to the Facials and Body Treatment unordered list headings 4. Click the bold_blue rule in the CSS Styles panel, then click the Edit Rule button on the CSS Styles panel 5. Click the Font-size arrow, click 16, click OK, then deselect the text 6. Save your work using the Save All command Adobe Dreamweaver CS6 - Illustrated
  • 29. Applying and Editing a Style Adobe Dreamweaver CS6 - Illustrated
  • 30. Applying and Editing a Style Adobe Dreamweaver CS6 - Illustrated
  • 31. Clues to Use • Understanding CSS Code – Format page content other than text • Background, borders, lists, and images – CSS Styles consist of a selector and a declaration Adobe Dreamweaver CS6 - Illustrated
  • 32. Adding Rules to a Cascading Style Sheet 1. Click the New CSS Rule button on the CSS Styles Panel 2. Click the Selector Type list arrow, click Tag (redefines an HTML element) – Type h1 in the Selector Name text box, click the Rule Definition list arrow – Click su_styles.css, then click OK 3. Click the Font-family list arrow, then click Arial, Helvetica, sans-serif, click the Font-size list arrow, click 24, click the Font-weight list arrow, click bold Adobe Dreamweaver CS6 - Illustrated
  • 33. Adding Rules to a Cascading Style Sheet 4. Repeat steps 1 through 3 to create a rule to modify the <h2> tag using the following settings: Font-family: Arial, Helvetica, sans-serif; Fontsize: 18; Font-weight: normal 5. Click File on the Menu bar, then click Save All Adobe Dreamweaver CS6 - Illustrated
  • 34. Adding Rules to a Cascading Style Sheet Adobe Dreamweaver CS6 - Illustrated
  • 35. Adding Rules to a Cascading Style Sheet Adobe Dreamweaver CS6 - Illustrated
  • 36. Clues to Use • Using font combinations in styles – When setting rule properties for text: • Apply font combinations – Ensures similar font will be applied if primary one is unavailable – Example: Arial, Helvetica, sans-serif • Browser will first check the user’s system for Arial, then Helvetica, etc. – Another option is external font libraries Adobe Dreamweaver CS6 - Illustrated
  • 37. Attaching a Cascading Style Sheet to a Page 1. Open the index.html page 2. Click the Attach Style Sheet button on the CSS Styles panel 3. Click Browse next to the File/URL text box – Click su_styles.css in the Select Style Sheet File dialog box if necessary – Click OK (Win) or Open (Mac), then click OK 4. Right-click the body_text rule under <style> in the CSS Styles panel in the internal style sheet, click Move CSS Rules, click OK Adobe Dreamweaver CS6 - Illustrated
  • 38. Attaching a Cascading Style Sheet to a Page 5. Repeat step 4 to move the nav_bar, small_text, and body rules to the external style sheet, delete the remaining <style> tag in the CSS Styles panel, save all files, then close the index page 6. Select the first unordered list on the spa page, click the Targeted Rule text box on the CSS Property inspector, then click body_text 7. Repeat step 6 to apply the body_text rule to the rest of the text on the page that does not have a rule applied, click File on the Menu bar, then click Save All Adobe Dreamweaver CS6 - Illustrated
  • 39. Attaching a Cascading Style Sheet to a Page Adobe Dreamweaver CS6 - Illustrated
  • 40. Design Matters • The evolution of CSS3 – Cascading Style Sheets revisions are referenced by “levels” rather than “versions” – CSS Level 1 is obsolete today. CSS Level 2 is still used, but CSS Level 3 is the latest W3C (World Wide Web Consortium) standard – With CSS3, several properties are available that promote website accessibility such as the @fontface rule Adobe Dreamweaver CS6 - Illustrated
  • 41. Checking for Spelling Errors 1. Place the insertion point in front of The Sea Spa Services heading 2. Click Commands on the Menu bar, then click Check Spelling 3. Click massage. in the Suggestions list if necessary, click Change, then click Ignore if it stops on any other words that you know are spelled correctly 4. Click OK Adobe Dreamweaver CS6 - Illustrated
  • 42. Checking for Spelling Errors 5. Add the page title The Sea Spa to the Title text box on the Document toolbar 6. Click File on the Menu bar, click Save, click the Preview/Debug in browser icon, then preview the spa page in your browser window 7. Close your browser, close all open pages, then exit Dreamweaver Adobe Dreamweaver CS6 - Illustrated
  • 43. Checking for Spelling Errors Adobe Dreamweaver CS6 - Illustrated
  • 44. Checking for Spelling Errors Adobe Dreamweaver CS6 - Illustrated
  • 45. Clues to Use • Using Find and Replace – Located on the Edit menu – Search for text in Design or Code view – Similar to Find and Replace commands in word processing programs – Useful to search for coding errors Adobe Dreamweaver CS6 - Illustrated
  • 46. Unit Summary • • • • • • • • • • Create a new page Import text Set text properties Create an unordered list Understand Cascading Style Sheets Create a rule in a new Cascading Style Sheet Apply and edit a rule Add rules to a Cascading Style Sheet Attach a Cascading Style Sheet to a Page Check for spelling errors Adobe Dreamweaver CS6 - Illustrated