using cascading style sheets2

Post on 06-May-2015

446 Views

Category:

Technology

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Using Cascading Style sheets In Dreamweaver CS3

Methods for establishing Consistent House Style

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

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

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.

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.

Style sheet one

Style sheet two

Style sheet three

Style sheet four

New Style Sheet

Replace td and th as h1 and h2

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

Style sheet Applied

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;

}

Another Style sheet Applied

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}

Create a More Advanced CSS sheetSee

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

top related