using cascading style sheets2

22
Using Cascading Style sheets In Dreamweaver CS3 Methods for establishing Consistent House Style

Upload: sutinder-mann

Post on 06-May-2015

446 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Using Cascading Style Sheets2

Using Cascading Style sheets In Dreamweaver CS3

Methods for establishing Consistent House Style

Page 2: Using Cascading Style Sheets2

Diagrammatic Representations of what they do. Consider updating loads of pages

Both do a similar Job but Templates are easier to set up and use and do not involve adapting any code. CSS results in simpler and cleaner HTML code, which provides shorter browser loading times.

Template or CSS

Page 1

Page 2

Page 3

Page 3: Using Cascading Style Sheets2

Cascading Style Sheets (CSS) is a collection of formatting rules that control the appearance of content in a web page. Using CSS styles to format a page separates content from presentation. The content of your page—the HTML code—resides in the HTML file, and the CSS rules defining the presentation of the code reside in another file (an external style sheet) or in another part of the HTML document (usually the head section).

Separating content from presentation also results in simpler and cleaner HTML code, which provides shorter browser loading times, and simplifies navigation for people with accessibility issues (for example, those using screen readers).

CSS gives you great flexibility and control over the exact appearance of your page.

About Cascading Style Sheets

Page 4: Using Cascading Style Sheets2

Cascading Style Sheets• Work in a similar way but use an external file rather

than a Template. This then calls the style into the HTML through the addition of a line referencing it to the code or attaching a style sheet.

<link rel=“stylesheet” href=“style1.css”> </head>

• See Example exercise and sample code.

Page 5: Using Cascading Style Sheets2

Apply your formatting by using style sheets.Make sure these are in users’ folders before you start.

1. Use View, HTML to view the HTML coding.

2. Add the reference to the style sheet in the head section.

3. Save and preview.4. Edit the style sheet as

appropriate.

Page 6: Using Cascading Style Sheets2

Style sheet one

Page 7: Using Cascading Style Sheets2

Style sheet two

Page 8: Using Cascading Style Sheets2

Style sheet three

Page 9: Using Cascading Style Sheets2

Style sheet four

Page 10: Using Cascading Style Sheets2

New Style Sheet

Page 11: Using Cascading Style Sheets2
Page 12: Using Cascading Style Sheets2

Replace td and th as h1 and h2

Page 13: Using Cascading Style Sheets2

Change colour by clicking into each section and selecting background colour and then font-size and color for it.

Page 14: Using Cascading Style Sheets2
Page 15: Using Cascading Style Sheets2
Page 16: Using Cascading Style Sheets2
Page 17: Using Cascading Style Sheets2
Page 18: Using Cascading Style Sheets2

Style sheet Applied

Page 19: Using Cascading Style Sheets2

BasicStyleSheet Code

body {font-family: Arial, Helvetica,

sans-serif;background-color: #CCFFFF;

}

h1 {font-family: Arial, Helvetica,

sans-serif;color: #0000FF;font-size: x-large;

}

h2 {font-family: Arial, Helvetica,

sans-serif;color: #FFFF00;font-size: large;

}

Page 20: Using Cascading Style Sheets2

Another Style sheet Applied

Page 21: Using Cascading Style Sheets2

AdvancedStyleSheet Code

h1{color:red;font-family: Arial,Helvetioca, sans-serif;font-size: xx-large}

h2{color:red;font-family: Arial,Helvetioca, sans-serif;font-size: x-large}

a{text-decoration:none:font-style:italic-transform:lowercase}

a:link(color:red;font-weight;bold}

a:visited {color:blue}

A:hover {color: green;text-transform:uppercase}

a:active{color:green}

Page 22: Using Cascading Style Sheets2

Create a More Advanced CSS sheetSee

http://www.w3schools.com/CSS/css_examples.asp