Robby Seitz 121 Powers Hall 662-915-7822 ADVANCED WEB DESIGN USING DREAMWEAVER

Slides:



Advertisements
Similar presentations
Cascading Style Sheets
Advertisements

Nvu - How to Create Your Own Website From Start to Finish!Dr. Dawn Sherry & Dr. Barry J. Monk Dr. Dawn Sherry Dr. Barry J. Monk Assistant Professor of.
CSS Basics Style and format your web site using CSS.
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.
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.
Today CSS HTML A project.
CHAPTER 7 STYLING CONTENT WITH CASCADING STYLE SHEETS.
Introducing CSS CIS 133 mashup Javascript, jQuery and XML 1.
CSS. Intro to CSS Cascading Style Sheets – styles and enhances appearance of webpage.css extension.
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
Introduction to CSS.
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.
Advanced Web Design Using Dreamweaver Robby Seitz 121 Powers Hall
Cascading Style Sheets By: Valerie Kuna. What are Cascading Style Sheets? Cascading Style Sheets (CSS) are a standard for specifying the presentation.
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.
Building a Website: Cascading Style Sheets (CSS) Fall 2013.
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:
1 Lesson 5 Introduction to Cascading Style Sheets HTML and JavaScript BASICS, 4 th Edition Barksdale / Turner.
“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.
ADVANCED CSS William Neely CEO, Piecewise.com. CSS FONTS AND TEXT CSS ‣ Line-height allows to indicate the amount of space between lines; allows for equal.
Chapter 8 Creating Style Sheets.
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.
16 HTML Tables and Frames Section 16.1 Create a basic table using HTML Define borders Merge cells Align content in tables Section 16.2 Create a frames-based.
4.01 Cascading Style Sheets
Tutorial 3: Adding and Formatting Text. 2 Objectives Session 3.1 Type text into a page Copy text from a document and paste it into a page Check for spelling.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
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.
Using Styles and Style Sheets for Design
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.
Website Development with Dreamweaver
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.
ITCS373: Internet Technology Week 3: Introduction to CSS Dr. Faisal Al-Qaed.
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.
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.
Course created by Sarah Phillips BBCD Melbourne BAPDCOM Version 1 – April 2013.
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
Macromedia Dreamweaver 8 Revealed WEB PAGE DEVELOPING A.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Microsoft Expression Web 3 – Illustrated Unit D: Structuring and Styling Text.
XP Dreamweaver MX 2004 Tutorial 3 1 Adding and Formatting Text.
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.
WEB FOUNDATIONS CSS Overview. Outline  What is CSS  What does it do  Where are styles stored  Why use them  What is the cascade effect  CSS Syntax.
CSS for Styling By Jinzhu Gao.
4.01 Cascading Style Sheets
Chapter A - Getting Started with Dreamweaver MX 2004
IS333: MULTI-TIER APPLICATION DEVELOPMENT
Website Design 3
Software Engineering for Internet Applications
What are Cascading Stylesheets (CSS)?
Using Cascading Style Sheets (CSS)
4.01 Cascading Style Sheets
Presentation transcript:

Robby Seitz 121 Powers Hall ADVANCED WEB DESIGN USING DREAMWEAVER

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

 HTML describes only the content of the document. ,, describe the type of content, and not specifically how they should appear.  The formatting of these elements by the browser is very limited, and inconsistent.  CSS was added to describe the layout of the HTML elements.  Styles are normally saved in external files. These allow you to change the appearance of an entire site just by editing one single file.  Zen Garden Zen Garden CASCADING STYLE SHEETS

Example: The link element  Visited links are purple  Unvisited links are blue  Active links are red The style for each of these is re-definable. CASCADING STYLE SHEETS

 Adding a style definition for the link element changes its appearance. a { font-weight: bold; color: yellow; background: blue; text-decoration: none; } CASCADING STYLE SHEETS

 CSS can also adjust only a particular aspect of some elements. a { font-weight: bold; color: yellow; background-color: blue; text-decoration: none; } 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 section (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… Make all paragraphs bold face. p {font-weight: bold ;} 2.By class attribute… Make anything with class="column" green..column {color: green ;} 3.By ID attribute… Make the one element with id="header" all uppercase. #header {text-transform: uppercase ;} 4.By style attribute… Italicize this very element. CASCADING STYLE SHEETS

Identifiers may also be combined.  p#myid {font-weight: bold;} The one paragraph with id="myid" will be bold.  p.myclass {color: yellow;} Any paragraph with class="myclass" will be yellow.  #mycontent.orange {color: orange;} Any element with class="orange" inside the one element with id="mycontent" will be orange. CASCADING STYLE SHEETS

Multiple identifiers can use the same style.  p.first, p.second, p.third {font-weight: bold;} Any paragraphs with class="first", "second" or "third" will be bold.  table, td {border: 1px solid black;} Every table and every table data cell will have black solid border 1 pixel wide. CASCADING STYLE SHEETS

 What content is generated automatically?  Calendar events  System-generated dates  Anything requiring programming  Which parts of the page will appear on other pages? Create separate files for those parts and include them back into their locations. This allows you to make updates in only one place that impacts the entire site. DYNAMIC & REUSABLE CONTENT

 Identify recurring parts  Header  Navigation  Footer  Stylesheet  Javascript  Identify dynamic content  Calendar events listing  Date of last modification DECONSTRUCTING THE PAGE

1.Define your site:  Site / New Site  Select Advanced Tab  Local Info…  Site name: your name  Local root folder: …/Documents/yourname  Remote Info…  Access: FTP  FTP host: cedar.olemiss.edu  Host directory: working  Login: maildemo  Password: ********  Use Secure FTP (SFTP): Checked START YOUR DREAMWEAVERS!

2.Edit  Preferences  Code Format Line break type: LF (Unix) 3.View Remote Files 4.Download the index.html file from the server 5.View Local Files 6.Change index.html to yourname1.html 7.Upload new file name to server 8.View in browser at DEFINE NEW PAGE NAME

9.Change “by” name and save/upload the page again. CUSTOMIZE IT

10.Consider the left menu hover action CSS #leftcol a:hover { background: #395494; color: #dedede; } HTML … First Button Second Button Third Button EXAMINE THE CSS

11.Change the filenames to use your own filenames First Button Second Button Third Button CUSTOMIZE THE MENU

12.Put the Header, Navigation, and Footer in separate files  yourname-head.htm  yourname-menu.htm  yourname-foot.htm 13.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

14.Put the contents of the section in separate file yourname-meta.htm. DISASSEMBLE THE PAGE

15.Change and page name. 16.Save/upload as yourname2.html 17.Change and page name. 18.Save/upload as yourname3.html 19.Once all pages are created and uploaded, browse your site and see how the pages relate to each other. REASSEMBLE MORE PAGES

 You want to communicate URLs as succinctly as possible:  Avoid using any uppercase characters – it matters!  Avoid adding spaces to folder and file names. Spaces get converted to “%20” text, and browsers hate them.  Keep content current. If people wanted to see old information, they’d look on a printed piece. REMINDERS