Advanced Web Design Using Dreamweaver Robby Seitz 121 Powers Hall 662-915-7822.

Slides:



Advertisements
Similar presentations
Table, List, Blocks, Inline Style
Advertisements

CSS-Formatting Review Cascading Style Sheets addstyle to your HTML web pages.
Cascading Style Sheets (CSS). Cascading Style Sheets With the explosive growth of the World Wide Web, designers and programmers quickly explored and reached.
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Web Pages Week 10 This week: CSS Next week: CSS – Part 2.
CSS. CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem External Style.
Cascading Style Sheets
Cascading Style Sheets
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Cascading Style Sheets: Basics I450 Technology Seminar Copyright 2003, Matt Hottell.
Cascading Style Sheets (CSS) “Styles” for short. Pg. 418.
Today CSS HTML A project.
Introducing CSS CIS 133 mashup Javascript, jQuery and XML 1.
Chapter 3 – Designing your web pages Dr. Stephanos Mavromoustakos.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
Cascading Style Sheets By: Valerie Kuna. What are Cascading Style Sheets? Cascading Style Sheets (CSS) are a standard for specifying the presentation.
CSS cont. October 5, Unit 4. Padding We can add borders around the elements of our pages To increase the space between the content and the border, use.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
1 Web Developer & Design Foundations with XHTML Chapter 9 Key Concepts.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 6.
CSS BASICS. CSS Rules Components of a CSS Rule  Selector: Part of the rule that targets an element to be styled  Declaration: Two or more parts: a.
Cascading Style Sheets Based on Castro, HTML for the WWW, 6 th edition Ron Gerton, Fall 2007.
CSW131 Steven Battilana 1 CSW 131 – Chapter 5 (More) Advanced CSS Prepared by Prof. B. for use with Teach Yourself Visually Web Design by Ron Huddleston,
Web Pages and Style Sheets Bert Wachsmuth. HTML versus XHTML XHTML is a stricter version of HTML: HTML + stricter rules = XHTML. XHTML Rule violations:
Robby Seitz 121 Powers Hall ADVANCED WEB DESIGN USING DREAMWEAVER
“Cascading Style Sheets” for styling WWW information DSC340 Mike Pangburn.
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Unit 20 - Client Side Customisation of Web Pages
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Lecture Cascading Style Sheets (CSS) Internal Style Sheets Classes.
4.01 Cascading Style Sheets
CM143 Week 4 Introducing CSS. Cascading Style Sheets A definition for the style in which an element of the webpage will be displayed Border width, colour,
CSS (Cascading Style Sheets): How the web is styled Create Rules that specify how the content of an HTML Element should appear. CSS controls how your web.
Dreamweaver -- CSS. Dreamweaver -- MX New icons are added in MX Most of the features commonly used in web design, and are same as FrontPage. New feature.
Robby Seitz 121 Powers Hall ADVANCED WEB DESIGN USING DREAMWEAVER.
Cascading Style Sheets. Defines the presentation of one or more web pages Similar to a template Can control the appearance of an entire web site giving.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
1 What is CSS?  CSS stands for Cascading Style Sheets  Styles define how to display HTML elements  Styles are normally stored in Style Sheets  Styles.
XP Dreamweaver 8.0 Tutorial 3 1 Adding Text and Formatting Text with CSS Styles.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
WRT235: Writing in Electronic Environments CSS Classes, IDs, divs.
Css. Definition Cascading style sheet (CSS) Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.
CO1552 – Web Application Development Cascading Style Sheets.
CM143Web Week 8 Review of Assignment 1 Revision & Elaboration.
CS134 Web Design & Development Cascading Style Sheets (CSS) Mehmud Abliz.
Css. Definition Cascading style sheet (CSS)  It is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
© 2011 Delmar, Cengage Learning Chapter 3 Working with Text and Cascading Style Sheets.
1 © Netskills Quality Internet Training, University of Newcastle Using Style Sheets in Dreamweaver CS © Netskills, Quality Internet Training, University.
Tutorial 3 Adding and Formatting Text with CSS Styles.
Cascading Style Sheets CSS. Source W3Schools
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
NASRULLAHIBA.  It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and.
Creating HTML Content Files for ANGEL File Structure, Using Dreamweaver, Exporting with CASE, and Uploading to ANGEL.
CSS Introductions. Objectives To take control of the appearance of a Web site by creating style sheets. To use a style sheet to give all the pages of.
Cascading Style Sheets (CSS) Internal Style Sheets Classes
4.01 Cascading Style Sheets
Cascading Style Sheets
Cascading Style Sheets (Layout)
Website Design 3
Software Engineering for Internet Applications
What are Cascading Stylesheets (CSS)?
Training & Development
4.01 Cascading Style Sheets
Introduction to Cascading Style Sheets (CSS)
Presentation transcript:

Advanced Web Design Using Dreamweaver Robby Seitz 121 Powers Hall

Assumptions You already understand HTML tags. You can already use Dreamweaver. You understand file name and folder location concepts. You want to know more.

Cascading Style Sheets CSS is used to change the look or layout of HTML elements. The link element: Links default to blue. Visited links default to purple. Active and hover links default to red. The style for each of these is redefinable!

Cascading Style Sheets Adding a style definition for the link element changes its appearance. a { font-weight: bold; color: green; border: 1px solid gold; background-color: #999966; padding-left: 5px; padding-right: 5px; }

Cascading Style Sheets CSS can also adjust only a particular aspect of some elements. a { font-weight: bold; color: green; border: 1px solid gold; background-color: #999966; padding-left: 5px; padding-right: 5px; } a:hover { color: black; background-color: red; }

Cascading Style Sheets “Cascading” refers to the precedence of definitions for a given element. 1.Browser default 2.External style sheet 3.Internal style sheet (inside the ) 4.Inline style (inside the HTML element)

Cascading Style Sheets There are four ways to impose a style on HTML elements: 1.By element tag name p {margin_top: 20px;} 2.By class attribute.column {border: 5px;} 3.By ID attribute #header {background-color: #ff0000;} 4.By style attribute style=“color:blue;” (within HTML tag)

Dynamic & Reusable Content What content is generated automatically? –Calendar events –RSS feeds –System-generated dates –Anything requiring programming Which parts of the page will appear on other pages? Pull those parts out into separate files and include them wherever you want them:

Deconstructing the page Identify dynamic content –Random photo –Calendar events listing –Date of last modification Identify recurring parts –Header –Navigation –Footer –Stylesheet –Javascript

Start Your Dreamweavers! 1.Define your site: –Site / New Site –Select Advanced Tab –Local Info… Site name: your name Local root folder: My Documents/tacit –Remote Info… Access: FTP FTP host: cedar.olemiss.edu Host directory: working Login: maildemo Password: tacit08 Use Secure FTP (SFTP): Checked

Define new page name 2.View Remote Files 3.Download the index.html file and the images folder from the server 4.View Local Files 5.Change its name to yourname.html 6.Upload new file name to server 7.View in browser at

Customize it 8.Change “maintained by” name and save/upload the page again.

Examine the CSS 9.The left menu mouseover action CSS #menu li a:hover, body#firstpage a#firstlink, body#secondpage a#secondlink, body#thirdpage a#thirdlink { background-color:#cc0000; color:#FFFFFF; } … HTML … First Link Second Link Third Link

Customize the menu 10.Change the filenames to use your own filenames First Link Second Link Third Link

Disassemble the page 11.Put the Header, Navigation, and Footer in separate files yourname-head.htm yourname-menu.htm yourname-foot.htm 12.Include them in the original file: (Note that this is a Server Side Include which your browser can only handle when viewing your page on a server.)

Disassemble the page 13.Put the CSS in its own file so it can be shared by other pages. yourname-style.css 14.Do the same with the Javascript. yourname-javascript.js

Reassemble more pages 15.Change the id to “secondpage” 16.Save/upload as yourname2.html 17.Change the id to “thirdpage” 18.Save/upload as yourname3.html 19.View the files on the server and note how they work together.

Tips Never put spaces in Web filenames. Spaces get converted to “%20” text, and browsers hate them. Make sure all random photos are exactly the same size. Page layout usually adapts to photo size. Keep images in a separate folder. Just a good housekeeping rule. Keep content current. If people wanted to see old information, they’d look on a printed piece.