Presentation is loading. Please wait.

Presentation is loading. Please wait.

Tutorial 3 Adding and Formatting Text with CSS Styles.

Similar presentations


Presentation on theme: "Tutorial 3 Adding and Formatting Text with CSS Styles."— Presentation transcript:

1 Tutorial 3 Adding and Formatting Text with CSS Styles

2 XP Objectives Type text into a page Copy text from a document and paste it into a page Check for spelling errors Create hyperlinks Examine HTML tags for hyperlinks Explore CSS styles and style sheets Modify HTML tags Create custom style classes Dreamweaver CS3 Tutorial 32

3 XP Objectives Create styles for the tag selectors Create an external style sheet Attach an external style sheet to a Web page Edit styles Delete styles Examine the code for styles and style sheets Examine HTML tags used to format text Dreamweaver CS3 Tutorial 33

4 XP Adding Text to a Web Page Text is very important to your Web page and should be error free and clear. You can add small amounts of text by typing in the workspace of the Document window. You can add larger amounts of text by cutting and pasting from another program such as a word processor that does a better job of clearing errors. Dreamweaver also has a built in spell checker. Dreamweaver CS3 Tutorial 34

5 XP Adding Text to a Web Page Dreamweaver CS3 Tutorial 35 Text Copied from the Bands Document

6 XP Adding Text to a Web Page Dreamweaver CS3 Tutorial 36 Check Spelling Dialog Box

7 XP Formatting Text Using the Property Inspector The simplest way to format text is to select the text in the Document window and set the attributes for the text in the Property inspector. Text formatting attributes included in the Property inspector: – Format, font, style, size, color, emphasis, alignment, lists, and indents Dreamweaver CS3 Tutorial 37

8 XP Formatting Text Using the Property Inspector Dreamweaver CS3 Tutorial 38 Formatted Page and Band Names

9 XP Creating Text Hyperlinks Hyperlinks allow you to navigate between pages in a Web site and to other Web sites. Once the hyperlinks are created, you will copy the links to the rest of the pages in the site. To add more than one space between words you will need to use a nonbreaking space, which is a special, invisible character used to create more than one space between text and other elements. Dreamweaver CS3 Tutorial 39

10 XP Creating Text Hyperlinks Dreamweaver CS3 Tutorial 310 Link Text Typed in the Bands Page

11 XP Creating Text Hyperlinks When your links are in place and formatted, you can then convert them to hyperlinks by using the Property inspector to associate the text with a particular file or Web page. If you know it, you can also type the URL into the Link text box. Within your Web site, you will use document relative links, which only specify the path from the current page. Dreamweaver CS3 Tutorial 311

12 XP Creating Text Hyperlinks Site root relative links specify a path from the root folder to the linked document. – Used on more complex sites When you link to a page in another site, you will use an absolute link, which includes the entire URL. When you copy the navigation system to other pages of the site, you will not have to create additional links. Dreamweaver CS3 Tutorial 312

13 XP Creating Text Hyperlinks Dreamweaver CS3 Tutorial 313 Select File Dialog Box

14 XP Creating Text Hyperlinks Dreamweaver CS3 Tutorial 314 Label Text Converted to a Hyperlink

15 XP Creating Text Hyperlinks Dreamweaver CS3 Tutorial 315 Creating a Hyperlink Using the Point to File Button

16 XP Exploring HTML Tags for Hyperlinks HTML tags come in pairs surrounding the text: Some text Tags can be used together, or nested: Some text Tags can also contain attributes within the opening tag: Some Text Reference sites for HTML tags include: –www.w3.orgwww.w3.org –www.htmldog.com/reference/html/tagswww.htmldog.com/reference/html/tags Dreamweaver CS3 Tutorial 316

17 XP Exploring HTML Tags for Hyperlinks Hyperlinks are created in HTML using an anchor tag: Link Text Absolute, document relative and site root relative links have different paths of information in the hypertext reference (“href”) attribute. Dreamweaver CS3 Tutorial 317

18 XP Exploring HTML Tags for Hyperlinks Dreamweaver CS3 Tutorial 318 Anchor Tags for Absolute and Relative Links

19 XP Exploring HTML Tags for Hyperlinks The target attribute specifies where the link opens—in the current browser window or a new browser window. The default is for the new page to open in the current browser window, replacing the page from which you linked. Dreamweaver CS3 Tutorial 319

20 XP Exploring HTML Tags for Hyperlinks You can also specify the Name attribute in an anchor link, associating a name to a specific named location within a Web page: – Some Text –“anchor_name” is your name for the anchor –“Some Text” is the text being named as the anchor Dreamweaver CS3 Tutorial 320

21 XP Exploring HTML Tags for Hyperlinks This type of name is used to do things like jump from the end of a page back to the top, or to skip around on a page. The format for the anchor tag to link to a named anchor on the same page is: – Link Text To link to a named anchor on another page: – Link Text Dreamweaver CS3 Tutorial 321

22 XP Exploring HTML Tags for Hyperlinks Dreamweaver CS3 Tutorial 322 Anchor Tag in the Bands Page

23 XP Understanding Cascading Style Sheets Because of the limitations of HTML styles, Cascading Style Sheets (CSS) were created. A CSS style is a rule that defines how an element appears either through modifying an HTML style or setting up a custom one. CSS styles define text appearance, position, and many other aspects of Web page layout. Dreamweaver CS3 Tutorial 323

24 XP Understanding Cascading Style Sheets A CSS style can be defined in one place and used to modify text in many places. Unlike HTML styles, if you change a CSS style, all text using that style is also changed. CSS styles were developed with HTML 4 and therefore are not fully compatible with older browsers. Dreamweaver CS3 Tutorial 324

25 XP Creating CSS Styles When you create a CSS style, you will choose: – Type (there are three choices): Redefined HTML tag - where you modify an existing tag Custom style - where you create an entirely new style Advanced style - used to redefine formatting for a group of tags or for all tags that contain a particular ID attribute – Name/Tag/Selector: the name for whatever type of style you selected above – Define in: internal or external style sheet Dreamweaver CS3 Tutorial 325

26 XP Understanding Cascading Style Sheets Then choose the attributes for the CSS style: –Type: font tag attributes such as font, size, color, etc. –Background: a color or image appearing behind a page element over the Web page background. –Block: spacing and alignment settings for tags and attributes. –Box: controls the characteristics of the selection box that surrounds text elements. –Border: dimensions, color and line styles of the box that surrounds text elements. –List: format of bullets and bulleted lists. –Positioning: controls the placement of text on the screen. –Extensions: controls printing page breaks, pointer appearance as it hovers over objects and special affects. This is not supported in many browsers. Dreamweaver CS3 Tutorial 326

27 XP Modifying HTML Tags The easiest way to create a CSS style is to redefine an existing HTML tag because tags often are automatically inserted. Dreamweaver provides a list of available tags where you can edit existing attributes or add new ones. When you modify the attributes associated with a tag, the changes you make will apply to every instance of that tag. Dreamweaver CS3 Tutorial 327

28 XP Modifying HTML Tags Dreamweaver CS3 Tutorial 328 CSS Styles Panel

29 XP Modifying HTML Tags Dreamweaver CS3 Tutorial 329 New CSS Rule Dialog Box

30 XP Modifying HTML Tags Dreamweaver CS3 Tutorial 330 CSS Rule Definition for h2 Dialog Box

31 XP Creating and Applying Custom Style Classes You can also create new custom style classes A custom style class name should begin with a period (.) and contain no spaces or special characters. Once you create a custom style class, you must apply it to the text you want to format. Dreamweaver CS3 Tutorial 331

32 XP Creating and Applying Custom Style Classes You apply a style to selected text by selecting the style from the Style list in the Property inspector. To help you remember what a style looks like, each style name in the Style list in the Property inspector is formatted with the attributes for that style. Dreamweaver CS3 Tutorial 332

33 XP Using the Advanced CSS Type to Customize Anchor Tag Pseudoclasses You can create CSS styles manually using the advanced style. When you create an advanced style, you redefine the formatting for a group of tags or for tags containing a specific ID attribute. You will create a CSS style (or rule) for each part, or pseudoclass, of the tag. Dreamweaver CS3 Tutorial 333

34 XP Using the Advanced CSS Type to Customize Anchor Tag Pseudoclasses A pseudoclass is any class that is applied to entities other than HTML Specifications Standard tags. The anchor tag is broken into four parts (pseudoclasses): – a:link – a:hover – a:active – a:visited Dreamweaver CS3 Tutorial 334

35 XP Using External Style Sheets Applying CSS across a Web site requires the creation of an external style sheet. Using an external style sheet enables you to make site-wide stylistic changes by updating one file. You can either create the styles in the external style sheet, or export them to it if they are already created. Dreamweaver CS3 Tutorial 335

36 XP Using External Style Sheets Dreamweaver CS3 Tutorial 336 External Style Sheet Displayed in the Files Panel

37 XP Using External Style Sheets Styles moved to an external style sheet are automatically deleted from within the page. To attach an external style sheet to a Web page, you must open the page in the Document window, click the Attach Style Sheet button in the CSS Styles panel, and then choose the desired style sheet. You can add new styles to an external style sheet at any time. Dreamweaver CS3 Tutorial 337

38 XP Using External Style Sheets Dreamweaver CS3 Tutorial 338 Attach External Style Sheet Dialog Box

39 XP Examining Code for CSS Styles As CSS styles are added, Dreamweaver adds information to the head of a Web page between the head tags. When you attach an external style sheet to a Web page, a link tag is placed in the head portion of the HTML code for that page. When you use an internal or embedded style sheet, the styles are embedded in the head tag for that Web page. Dreamweaver CS3 Tutorial 339

40 XP Examining Code for CSS Styles Embedded code will usually look like this: <! - - name { attribute-name: attribute value; attribute2-name: attribute2 value; } - - > where name is the style name, the HTML tag name, or the tag and pseudoclass name Dreamweaver CS3 Tutorial 340

41 XP Examining Code for CSS Styles Style definitions appear inside the style tags: – style definitions –Where type indicates the style format that follows The comment tag is nested within the style tag: – Comment tags are used to hide the style definitions from older browsers Dreamweaver CS3 Tutorial 341

42 XP Examining Code for CSS Styles The format for the style definition is: – name { – attribute-name: attribute value; – attribute2-name: attribute2 value; – } The style name indicates whether it is a custom style, a redefined tag or an advanced style tag. –. Name: custom style – Tag name: redefined tag – Tag name followed by a colon and the pseudoclass: advanced style Dreamweaver CS3 Tutorial 342

43 XP Examining Code for CSS Styles An external style sheet can be used whenever the Web page contains a link to it in its head and the styles are located in the style sheet. The general format for link tags is: – – link identifies the type of tag – rel= indicates relationship between the link and the page – href= is the URL of the linked document – type= is the form of the content that will follow Dreamweaver CS3 Tutorial 343

44 XP Examining Code for CSS Styles Dreamweaver CS3 Tutorial 344 Code for the External Style Sheet in the Bands Page

45 XP Viewing Style Tags When you select text and apply a custom style class, HTML code is added in one of three ways: –Adding attributes to an existing tag: if the text already has attributes, the new attributes are added. –Applying a custom style class to a block of text: when there were no attributes, the entire block is surrounded with the div tag and the custom style attributes. –Applying a custom style class to a text selection: when the selection is smaller than a block of text, the selection is surrounded by the span tag with the custom attributes. Dreamweaver CS3 Tutorial 345

46 XP Editing CSS Styles When you edit a style, the changes are applied automatically across the Web site wherever that style was used. You can control the look and consistency of the entire Web site from one centralized set of specifications. Dreamweaver CS3 Tutorial 346

47 XP Editing CSS Styles You can manage and edit your styles using: – CSS Rule Definition dialog box – Properties pane in the CSS Styles panel – Property inspector Dreamweaver CS3 Tutorial 347

48 XP Exploring HTML Tags Used with Text Several HTML tags are used with text. When you create Web pages in Design view, Dreamweaver places the appropriate HTML tags around the text for you. To see the HTML tags, you need to switch to either Code view or Split view. Dreamweaver CS3 Tutorial 348

49 XP Exploring HTML Tags Used with Text Dreamweaver CS3 Tutorial 349 Reference Panel for Selected HTML Paragraph Tag

50 XP Exploring HTML Tags Used with Text It is not a good idea to add CSS styles to Web sites created in an older version of HTML. You can modify these pages in a number of ways: – Creating the code manually in Code view – Set preferences so Dreamweaver uses only HTML tags to format pages Dreamweaver CS3 Tutorial 350

51 XP Exploring HTML Tags Used with Text The attributes and process for formatting text using the HTML font tag are not the same as the ones for formatting text using CSS styles. The attributes for text formatting are similar to those in a word processing program, except HTML tags are added in the background of formatted text. Text formatting attributes include format, font, font size, font color, emphasis, alignment, lists, and indents. Dreamweaver CS3 Tutorial 351

52 XP Updating a Web Site on a Remote Server When pages are changed, they should be updated on your remote server. To update: –Connect to the remote server using the Connects to Remote Host button on the Files panel toolbar –Click the View list arrow, and then click Local View –Select updated files and then click the Put File(s) button –Click the View list arrow, and then click Remote View –Disconnect from remote host using the Files panel toolbar Dreamweaver CS3 Tutorial 352

53 XP Tutorial Summary Add text to a page Basic formatting techniques Use spelling checker and find and replace tools Create Cascading Style Sheets Examine styles in internal and external style sheets Edit existing styles Upload a site to a remote Web server Dreamweaver CS3 Tutorial 353


Download ppt "Tutorial 3 Adding and Formatting Text with CSS Styles."

Similar presentations


Ads by Google