Web Design 3080 : Week 3 Introduction to Dreamweaver Lecture

Slides:



Advertisements
Similar presentations
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Advertisements

Introduction to CSS.
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Part 3 Introduction to CSS. CSS Text Text Styles h1 {color: green} // rgb(0,255,0), #00ff00 h2{letter-spacing: 0.5cm} // 2px h3 {text-align: right} //
Measurement Many CSS properties (values within the declaration) require that you specify a unit of measurement, such as spacing between elements, border.
Tutorial 3 Introducing Cascading Style Sheets. XP New Perspectives on Blended HTML, XHTML, and CSS2 Objectives Learn about Cascading Style Sheets Write.
Week 7 Web Typography. 2 Understanding Type Design Principles.
Using Cascading Style Sheets CSS Basics. Goals Understand basic syntax of Cascading Style Sheets (CSS) Understand basic syntax of Cascading Style Sheets.
Macromedia Dreamweaver MX 2004 Design Professional Web Page DEVELOPING A.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
3.1 Cascading Style Sheets. Motto Fashions fade, style is eternal. —Yves Saint Laurent.
Link and Table in HTML. Statistics HTML review The two faces of a HTML file In a notepad program. In a internet browser program. The function of HTML.
INTRODUCTION TO DREAMWEAVER 8. What we already know…  Design basics  Contrast  Repetition  Alignment  Repetition  HTML.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 7 Web Typography Principles of Web Design, 4 th Edition.
Tutorial #3 Cascading Style Sheets. Review: Last Class Image sizing Pathnames Project Default Path Relative Path Absolute Path Blackboard Homework Submission.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 2 Developing a Web Page. Chapter 2 Lessons Introduction 1.Create head content and set page properties 2.Create, import, and format text 3.Add.
Chapter 12 Cascading Style Sheets: Part II The Web Warrior Guide to Web Design Technologies.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 3.
Tutorial #3 Cascading Style Sheets. Tutorial #2 Review - Anchors Links to Site DMACC Internal Links Go to Top Mail To me Local.
Finishing your site HTML and css 2012 Brian Davison.
Macromedia Dreamweaver 8-- Illustrated Introductory 1 Macromedia Dreamweaver 8 Unit D Formatting Text and Using Cascading Style Sheets.
Most of the attributes of the body element specify colors for the Web page. Note: The background attribute won’t be useful till we learn about graphics.
ALBERT WAVERING BOBBY SENG. Week 2: HTML + CSS  Quiz  Announcements/questions/etc  Some functional HTML elements.
CSS Cascading Style Sheets. CSS Advantages Greater typography and page layout control Style is separate from structure Styles can be stored in a separate.
Web Site Design: Layout Fall Basic Concepts Basic Web Design Concepts – Proximity – Alignment – Repetition – Contrast
Macromedia Dreamweaver 8 Revealed WEB PAGE DEVELOPING A.
XHTML Formatting font with a style declaration. Formatting Font HTML uses the font tag to change size and family of font But… the font tag is being deprecated.
Web Development & Design Foundations with XHTML
The Box Model in CSS Web Design – Sec 4-8
CS3220 Web and Internet Programming CSS Basics
Style Sheets.
The Internet 10/11/11 Fonts and Colors
HTML5 and CSS3 Illustrated Unit D: Formatting Text with CSS
Formatting Text with CSS
4.01 Cascading Style Sheets
Web Development & Design Foundations with HTML5 8th Edition
Chapter 2 Developing a Web Page.
Introduction to CSS.
Web Development & Design Foundations with HTML5
Chapter A - Getting Started with Dreamweaver MX 2004
Using Cascading Style Sheets Module B: CSS Structure
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Cascading Style Sheets (CSS)
Introduction to Web programming
Web Design M. Jacie Yang Assistant Professor
HTML Basics and CSS style
The Box Model in CSS Web Design – Sec 4-8
Web Development & Design Foundations with HTML5
CSS.
Introduction to CSS.
Introduction to Web programming
The Internet 10/13/11 The Box Model
Web Page Development Tools
Stylin’ with CSS.
Cascading Style Sheets Color and Font Properties
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Cascading Style Sheets™ (CSS)
Web Page Development Tools
Tutorial 3 Working with Cascading Style Sheets
CS3220 Web and Internet Programming CSS Basics
CSS Styles Fonts and Colors.
Introduction to CSS.
CS3220 Web and Internet Programming CSS Basics
Stylin’ with CSS.
4.01 Cascading Style Sheets
Stylin’ with CSS.
Presentation transcript:

Web Design 3080 : Week 3 Introduction to Dreamweaver Lecture Open standards Colour on the web Typography Basic web page construction using DW Lab Defining a website DW properties inspector Page properties Page layout

Web Design 3080 : Week 3 Open Standards The Goal: to have all web browsers and ‘user agents’ respond identically to the same html code. The Web should be an open platform accessible to everyone The Reality: Not quite. Different browsers will render the same html code in slightly different ways, although the situation has improved since the ‘early days’. Browsers: IE6, IE7, Firefox 2&3, Safari, Opera, Camino, Chrome Can mean writing the same page in 2 (or more) different ways to ensure consistency of presentation. Usually accomplished through the use of Cascading Style Sheets (CSS) Standards keeper is the World Wide Web Consortium (W3C) Other orgs: The Web Standards Project

Web Design 3080 : Week 3 Colour on the web “web safe” colour palette = 216 colours only (maybe…) 8 bit colour (216) / High Colour (1000’s) / True colour (millions) HTML uses hexadecimal code - 3 pairs of alphanumeric characters - to represent RGB values examples: white = #FFFFFF yellow = #FFFF00 black = #000000 green = #009933 Values from 0-9 and A-F 16 named colours will also work Where & how to use hex values old method: <body bgcolor=“#FFFFFF”> as a tag attribute New (correct) method: body {background-color: #FFFFFF;} as a style declaration

Web Design 3080 : Week 3 Colour on the web (cont’d) What affects how colour is displayed? Monitor bit-depth (8 bit vs high vs true) Monitor colour settings, calibration, brand, age CRT vs LCD Ambient light Room colour Result: total control is impossible

Web Design 3080 : Week 3 Typography No absolute control over type on the web Users can re-size, even change the font in their own browser Your specified font may not be installed on user’s computer Font-family: 3 suggested fonts ex. p {font-family: Verdana, Helvetica, sans-serif;} Should all be controlled via CSS What can be controlled? Font face Size (pixels, points, ems, description, percent, numeric size) Line-height / leading Letter spacing Colour Alignment (left, centre, right) Style (italic, oblique) Weight (varying degrees of bold) And more… The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 1. Create New Dreamweaver Site The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 2. Choose the ‘Basic’ tab, Name your site “Web Design 3080” The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 3. Select ‘No, I do not want to use a server technology.’ The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 4. Select ‘Edit local copies on my machine…’ 5. Browse to H:\3080\public_html and select. Laptop users browse to C:\3080\public_html Mac users browse to your home directory and then 3080 > public_html The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 6. Select ‘None’ for remote server connection. This will be set up later. The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Setting up Your Site in Dreamweaver 7. You’re finished. Select ‘Done’. The cascade is important to account for non-installed fonts Verdana is a web optimized font and therefore easier to read than Times an em is the square of the default point size Pixels are the preferred and most predictable method for setting font size.

Web Design 3080 : Week 3 Macromedia Dreamweaver Files Upload (put) Local / Remote view Download (get) site connect refresh Split screen

Web Design 3080 : Week 3 Macromedia Dreamweaver Interface – The Property Inspector Fonts Tables Images

Web Design 3080 : Week 3 Macromedia Dreamweaver Interface – Toolbars Page Toolbar

Web Design 3080 : Week 3 Macromedia Dreamweaver Interface – Toolbars Common Toolbar

Web Design 3080 : Week 3 Macromedia Dreamweaver Interface – Toolbars Text Toolbar