Using Style Sheets for Consistency
|
|
|
- Norah Simmons
- 9 years ago
- Views:
Transcription
1 Cascading Style Sheets enable you to easily maintain a consistent look across all the pages of a web site. In addition, they extend the power of HTML. For example, style sheets permit specifying point sizes for text, layering of objects, full-justification of text, pull-quotes, inverse text, boxes and borders, creating columns (without tables) and much, much more. Styles can be used to redefine basic HTML tags by adding characteristics to them or you can create your own styles. If you have used styles in word processing programs, then you should have a general idea of how Cascading Style Sheets (CSS) work. One caveat in using style sheets is that not all CSS works with old browsers. Be sure to preview your site in multiple browsers and on multiple platforms (which every good web designer does anyway.) Cascading Styles Styles can be applied in one or all of three ways: 1) Inline styles are used with an individual tag in the body of a document. 2) Internal style sheets, usually defined in the header of the document, provide rules that apply to the entire HTML file, but not to other files in the same web site. 3) External style sheets are text files (usually with a.css extension) that can be applied to any document on the web site. Creating a site in which numerous pages access external style sheets facilitates making changes to the entire site quickly. When changes are made to the external style sheets, the changes are immediately seen the next time the pages using those styles are loaded. What is Cascading? Documents may include an inline style, internal style sheets, and external style sheets. Each may attempt to redefine an HTML tag or apply a style to object on the page. When multiple styles are used for one object, the style settings will display the characteristics of each of the styles as long as they do not conflict. So, what happens when they do conflict? There is a priority level which determines which styles have the greatest level of specificity. Basically, the style closest to the object is applied first and then the level or priority goes to the styles that are the next closest. This is where the term cascading comes from. Level of precedence type 1) Highest: inline style (if there are two inline styles, the one closest gets priority.) 2) Second: internal style sheet 3) Third: external style sheet Another factor influencing specificity is the type of selector used. These will be discussed a little later on, but basically ID selectors take precedence over Class selectors. What is Inheritance? Inheritance allows CSS rules to be applied to a large portion of the page and other CSS rules to apply to a nested portion of the page. For example, if a section of text that has a style applied making it red, 36 point, and bold contains a section of text that is simply defined to be 24 point, then this nested text will inherit the additional characteristics and appear red, 24 point, and bold. Using CSS for Page Layout When laying out a page, CSS provides an incredible amount of flexibility with a significant decrease in the amount of code needed compared to using HTML Tables for design. The best way to visualize this is to think of a series of nested boxes whose height and width define areas of the page. Because of inheritance, each of these nested boxes has the characteristics of their respective containers. In traditional HTML layout, the browser reads and draws the page from top to bottom. In a sense with CSS, it still reads from top to bottom, but because the boxes can be nested and given specific positioning characteristics, something at the bottom of the code listing could appear at the top of the browser window. These boxes are best defined by using the DIV tag FETC Rick Reece Put Style (Sheets) into Your Web Pages 1
2 The Powerful <div> Tag The DIV tag is the most powerful item in you CSS Toolbox. It contains no formatting by itself (other than a line break before and after), but is used to identify logical divisions on the page. These might be structural divisions like banner, content, and footer, or they might be applied to text groupings. The power comes when the ID or the Class attribute is added to a DIV. When this occurs, you can apply CSS rules to entire blocks of code at the same time. IDs or classes applied to DIVs that are used for page layout rely heavily on the Box category in the CSS Rule Definition window Box Category Width: The amount of horizontal space taken up by the box and its contents. Padding: Defines white space between the boundaries of the box and its contents. Margins: Defines white space outside the boundaries of the box and indicates the distance between it and other objects on the page. Float: Used to make contents of a containing block wrap around an object. Clear: Used to prevent wrapping. Height: Listed last to discourage its use because if the block contents do not take up the entire vertical space specified, the remainder as defined will be empty. The most important Box attributes are Width, Padding, and Margins. They are required for page layout. When Should ID Be Used and When Should Class Be Used? The ID can be used only once per page, while the Class can be used as many times as needed. So the ID should be used to define structural parts of the page that occur only once like the banner or the footer. The opening tag for an ID would look like this: <div id= footer > and for Class would look like: <div id= subhead > Creating Style Sheets in Dreamweaver Creating a new Style Rule 1 Pull down Window to CSS Styles. 2 Click the New CSS Rule icon (plus sign) in the lower right. Create internal styles 1 Select This document only in the Define In section. 2 Indicate a Selector Type, enter a name (for the style being defined) in the Name Selector field, and click OK. Create external styles 1 Select the desired file in the Rules Definition section. 2 Indicate a Selector Type, enter a name for the style in the Name Selector field, and click OK. Create an style in new external style sheet 1 Select New Style Sheet File in the Rules Definition section. 2 Indicate a Selector Type, enter a name for the style being defined in the Name field, and click OK. 3 Enter an appropriate filename with an extension of.css and save in the same folder as your web pages. Make Custom Style (class) 1 Select Class in the Selector Type section. 2 Select desired choice in Rules Definition section. 3 Enter a name for the custom style and click OK. 4 When the CSS Style Definition window appears, enter the desired characteristics for the categories you wish to define and click OK. 2 Put Style (Sheets) into Your Web Pages 2009 FETC Rick Reece
3 Defining a DIV 1 Select the objects to be included in the DIV. 2 Pull down Insert to Layout Objects to Div Tag. 3 In the Insert Div Tag window, enter a descriptive name in ID or Class and click New CSS Style. 4 In the New CSS Rule window, select the characteristics desired for the DIV and click OK. Absolute Positioning A fixed (absolute) x,y location for an object can be specified on the screen with using absolute positioning. This style characteristic can be specified by the Type attribute in the Positioning category or by creating a special kind of DIV called an AP DIV. In the absence of anything else, the values entered in the Top and Left attributes in the Positioning category will affix the upper, left corner of this object to the specified screen location. If the user scrolls the browser, this object will remain in its absolute position relative to the screen and the rest of the contents will appear to move underneath it. Nested DIVs provide greater control. If the DIV containing the absolutely positioned object is itself contained inside another DIV and if that container DIV has the Positioning attribute of Type set to relative, then the Top and Left absolute settings will be positioned relative to that container DIV s boundaries rather than the screen. Defining an AP DIV to absolutely position content (In earlier Dreamweaver versions, AP DIV was called a layer) 1 Pull down Insert to Layout Objects to AP Div. An ID named #apdiv1 appears in the CSS window. 2 Click #apdiv1 in the status bar at the bottom of the Dreamweaver window. In the upper left of the Properties window, change the name from apdiv1 to a more descriptive name. 3 In the design window, click inside the new AP div box and insert or type the object to be positioned. 4 Adjust the size of the AP div box as needed. 5 Click the ID symbol (#) in the upper left of the AP div box and the drag to the desired location. (Note: An important attribute when using absolute position is the z-index. This allows multiple items to be stacked in an order based on their value (highest number is on top >) Redefine HTML Tag 1 Select Tag in the Selector Type section. 2 Click the arrow on the right of the Rules Definition section. 3 Drag to the HTML tag to be redefined in the Tag pop-up menu, and click OK. 4 When the CSS Style Definition window appears, add the desired characteristics and click OK. Define Pseudo Selectors to style links 1 Select Compound in the Selector Type section. 2 Click the arrow on the right of the Rules Definition section. (Four link-related selectors are built into Dreamweaver: a:active a:hover a:link a:visited) 3 Drag to the desired selector in the Selector pop-up menu and then enter the class name before the a in the link selector, followed by a space. Click OK. 4 When the CSS Style Definition window appears, enter the characteristics desired and click OK. Use an existing (external) style sheet 1 Click Attach Style Sheet icon in the lower right of the CSS Styles window. 2 Select Link (to attach to an external) or Import (to add sheet to document.) 3 Browse to find style sheet (with.css extension), highlight it, and click OK. 4 Select media type. (Note: Multiple style sheets can be attached. Converting internal styles to external style sheet 1 In the CSS window, highlight all of the rules in the list and then click the down arrow (on the right of the CSS window s title bar) and select Move CSS Rules. 2 In the Move to External Style Sheet window, click A new style sheet and then click OK. 3 Enter the desired name layout.css in both the Save As and URL fields and verify the Save location is inside the site folder. You can now use these styles with other web page files FETC Rick Reece Put Style (Sheets) into Your Web Pages 3
4 Defining Style Sheets for Different Purposes Since a single Dreamweaver file can have multiple style sheet files attached, for good organization it is recommended to use specific external style sheets for different functions. For example, use one style sheet for layout rules, use another for text formatting rules, and possibly another for image formatting. Creating a print Style Sheet Since style sheets can define output to various media and since a Dreamweaver file can have multiple style sheets attached, you can create pages that automatically look one way when displayed in a browser and a different way when printed. This is accomplished by having a screen style sheet and print style sheet. Both have rules with identical names but with different characteristics. So, when the page is viewed in the browser, the screen rules apply and when the page is printed, the print rules apply. A key attribute is Display in the Block category. Setting the value to none means objects with that style won t appear. 1 Duplicate the style sheet for each media desired by copying, pasting, and renaming. A good naming suggestion is to include the media name as part of the new filename. For example if your original style sheet is layout.css, then name your print duplicate layoutprint.css 2 Take a look at your document s code and find the following line of code in the head section of your document: <link href="xxyy.css" rel="stylesheet" type="text/css"> 3 Click after rel= stylesheet to add media="screen". The line will now look like this: <link href="xxyy.css" rel="stylesheet" media="screen" type="text/css"> 4 In the CSS window, click the Attach File Sheet icon (chain link). 5 Browse to find the file you duplicated above in step 1. 6 Click the arrow to the right of Media and drag to select Print. Then click OK. 7 Make desired changes to both the print and screen style sheets. 8 Save your file. Applying styles 1 If the Properties window is not visible, pull down Window to Properties. 2 Select object to apply style to. 3 Click the desired style in the Style popup menu. Editing Styles 1 Highlight the style to be edited in the CSS Styles window and click the Edit Styles icon 2 Make the appropriate changes in the CSS Rule Definition window. 3 When finished editing, click OK. Using Float to Position Objects Text and other objects can wrap around another element by specifying a left or right value for the Float property (in the Box category) of the element being wrapped A float value of left, means the element will float to the left of the surrounding elements 1 Click the New CSS Style icon in the lower right of the CSS Styles window. 2 Create a Class with an appropriate name and click OK. 3 In the Box category set a Width for the element (and other values as desired) and then set the Float property to Left or Right as desired. Creating Styles with Visible Borders Styles allow you to add borders of various widths on one, two, three, or all sides of an element. 1 Click the New CSS Style icon in the lower right of the CSS Styles window. 2 Create a Class with an appropriate name and click OK. 3 In the CSS Rule Definition window enter settings appropriate to the text or image being formatted. 4 Click the Border category. Specify a Style (solid, dashed, etc.), the Width (thickness of the line), and the Color (of the line) for the Top, Bottom, Left, and/or Right borders 4 Put Style (Sheets) into Your Web Pages 2009 FETC Rick Reece
5 Centering Objects Objects governed by a DIV class or ID can be centered within their respective containers by setting a width for the object in the Box category and setting both the left and right margins (also in the Box category) to auto. Width establishes space for the object. Since margins, are outside the box s width, they define the distance between the box and its container. The auto setting tells the browser to provide whatever space is left after the box width, so using auto for both the left and right value splits the space left over between the two sides resulting in a centered object. 1 Pull down Insert to Layout Objects to Div Tag, enter a style name in either class or ID and click the New CSS Style button. 2 In the New CSS Rule window, verify that type, name, and Define In place are correct and click OK. 4 Click the Box category. Specify a Width (of the box) and set the Left and Right Margins to auto. 5 Add other desired elements to the style as desired. Forcing objects so bottom of screen If your page contains a footer you probably want that footer to always be at the bottom of the page. Since the browser reads the tags starting at the top and going down, it s possible to end up with some strange positioning of the footer. For example if the last DIV defined prior to the footer takes up less vertical space than other areas and a Float value has been set, the footer might slide into that area and no longer be at the very bottom. The Clear property can help to make that happen. Clear specifies sides of an element that are not affected by other elements. The element with the Clear property moves below elements on the specified side. To assure something will be placed at the bottom, the value Clear (in the Box category) should be set to Both. 1 Click the New CSS Style icon in the lower right of the CSS Styles window. 2 Create a Class with an appropriate name and click OK. 3 Enter desired values in the various categories. 4 In the Box category, specify a width and then set Clear to Both. Creating pull quotes A pull quote is a direct quote from the surrounding text used to call attention to information of interest. The text is usually a larger font and bold and is set off from surrounding text with extra white space and sometimes a top and bottom border. Depending upon the design, the surrounding text either wraps around the pull quote or is interrupted before the pull quote and continued afterwards. To create a pull quote: 1 Click at the location in the text where you want the pull quote to be. 2 Insert a new div with a new Class style. (A good name for the class is pullquote.) 3 The CSS Rule Definition window will open up. In the Type category, set the font, size, weight, color, line height, etc. as desired. 4 The settings in the Box category are critical: Width Set this to the number of pixels you want the box to occupy on the screen. Margin Top, bottom, right, and left settings define the white space around the pull quote. Float Specifies whether the pull quote will be position to the left or the right of surroundings. Padding Specifies white space between the contents of the pull quote and the boundaries of the box. This setting is necessary if Borders are defined. 5 If visible lines are desired, select the Border category and set the Style, Width (of the line), and Color. (Note: Usually for pull quotes, lines are used above and below the contents. In that case, the Top and Bottom settings should be identical for all.) Creating inverse text 1 Create a new style in the CSS window with an appropriate Class name. 2 In the Type category in the CSS Rules Definition window, set the font, size, weight, etc. as desired. 3 Set the Color to the same color as the background on the screen where the inverse text is to appear. 4 In the Background category, set a Background color that contrasts to the color set above. (Note: Usually the background color for inverse text is set to the same color as the surrounding text.) 2009 FETC Rick Reece Put Style (Sheets) into Your Web Pages 5
6 Creating Style Sheets with text Creating and using an inline style 1 Within the opening tag, add the attribute style followed by an equal sign. 2 The style characteristics to be applied follow (inside quotation marks.) A semi-colon is used to separate multiple characteristics. Example: <H1 style="font-size:101px;color:#9933cc"> Creating an internal style sheet 1 Internal style sheets are placed in the <head> section of he HTML document. 2 They begin with <style> and end with </style> and are contained within an HTML comment tag: <!-- -->. 3 The tag or custom style name is followed by the description, which is inside curly brackets. Example: <style> <!- - h1 {font-size:101px;font-style:#italic} Styles applied to an HTML tag h1, h2, h3 Styles applied to multiple HTML tags {font-family:arial; color:#9933cc }.bodytext Custom tag created with multiple style characteristics {font-family: Arial; font-size: 10px; color: #012F61; text-align: justify } - - > </style> Using internal styles The bodytext definition shown above could be applied to an HTML tag as it occurs. The custom tag would appear as part of another tag. Example: <P class= bodytext > Creating an external style sheet External style sheets are plain text files that are saved with a.css extension. The can be created with an ordinary text processor. The styles are defined just as they are in the internal style sheet example above except only the styles appear. The opening and closing HTML style tags and the HTML comment tags are not included. Using an external style sheet The style sheet to be used is specified in the <head> section of the HTML document with the following code: <link rel="stylesheet" href="fetcstyles.css" type="text/css" media= screen > Then the styles are applied the same as with internal styles. CSS Properties There are too many to attempt to list. Your best bet is to search the web for Cascading Style Sheets and study the many options available. 6 Put Style (Sheets) into Your Web Pages 2009 FETC Rick Reece
Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University
Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages
Using an external style sheet with Dreamweaver (CS6)
Using an external style sheet with Dreamweaver (CS6) nigelbuckner.com 2012 This handout explains how to create an external style sheet, the purpose of selector types and how to create styles. It does not
Outline of CSS: Cascading Style Sheets
Outline of CSS: Cascading Style Sheets nigelbuckner 2014 This is an introduction to CSS showing how styles are written, types of style sheets, CSS selectors, the cascade, grouping styles and how styles
Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates
Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates What is a DIV tag? First, let s recall that HTML is a markup language. Markup provides structure and order to a page. For example,
CSS 101. CSS CODE The code in a style sheet is made up of rules of the following types
CSS 101 WHY CSS? A consistent system was needed to apply stylistic values to HTML elements. What CSS does is provide a way to attach styling like color:red to HTML elements like . It does this by defining
CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)
CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions) Step 1 - DEFINE A NEW WEB SITE - 5 POINTS 1. From the welcome window that opens select the Dreamweaver Site... or from the main
CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5
CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5 Step 1 - Creating list of links - (5 points) Traditionally, CSS navigation is based on unordered list - . Any navigational bar can be
Web Design with CSS and CSS3. Dr. Jan Stelovsky
Web Design with CSS and CSS3 Dr. Jan Stelovsky CSS Cascading Style Sheets Separate the formatting from the structure Best practice external CSS in a separate file link to a styles from numerous pages Style
{color:blue; font-size: 12px;}
CSS stands for cascading style sheets. Styles define how to display a web page. Styles remove the formatting of a document from the content of the document. There are 3 ways that styles can be applied:
Style & Layout in the web: CSS and Bootstrap
Style & Layout in the web: CSS and Bootstrap Ambient intelligence: technology and design Fulvio Corno Politecnico di Torino, 2014/2015 Goal Styling web content Advanced layout in web pages Responsive layouts
Microsoft Expression Web Quickstart Guide
Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,
Introduction to Adobe Dreamweaver CC
Introduction to Adobe Dreamweaver CC What is Dreamweaver? Dreamweaver is the program that we will be programming our websites into all semester. We will be slicing our designs out of Fireworks and assembling
Using Adobe Dreamweaver CS4 (10.0)
Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called
Basic tutorial for Dreamweaver CS5
Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to
ICE: HTML, CSS, and Validation
ICE: HTML, CSS, and Validation Formatting a Recipe NAME: Overview Today you will be given an existing HTML page that already has significant content, in this case, a recipe. Your tasks are to: mark it
This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator.
1 Introduction This document will describe how you can create your own, fully responsive drag and drop email template to use in the email creator. It includes ready-made HTML code that will allow you to
Creating Web Pages with Microsoft FrontPage
Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short
Web Design I. Spring 2009 Kevin Cole Gallaudet University 2009.03.05
Web Design I Spring 2009 Kevin Cole Gallaudet University 2009.03.05 Layout Page banner, sidebar, main content, footer Old method: Use , , New method: and "float" CSS property Think
TUTORIAL 4 Building a Navigation Bar with Fireworks
TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar
CSS - Cascading Style Sheets
CSS - Cascading Style Sheets From http://www.csstutorial.net/ http://www.w3schools.com/css/default.asp What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements External
What is CSS? Official W3C standard for controlling presentation Style sheets rely on underlying markup structure
CSS Peter Cho 161A Notes from Jennifer Niederst: Web Design in a Nutshell and Thomas A. Powell: HTML & XHTML, Fourth Edition Based on a tutorials by Prof. Daniel Sauter / Prof. Casey Reas What is CSS?
Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:
CSS Tutorial Part 2: Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,: animals A paragraph about animals goes here
HTML CSS Basic Structure. HTML Structure [Source Code] CSS Structure [Cascading Styles] DIV or ID Tags and Classes. The BOX MODEL
HTML CSS Basic Structure HTML [Hypertext Markup Language] is the code read by a browser and defines the overall page structure. The HTML file or web page [.html] is made up of a head and a body. The head
Web Design and Development ACS-1809. Chapter 9. Page Structure
Web Design and Development ACS-1809 Chapter 9 Page Structure 1 Chapter 9: Page Structure Organize Sections of Text Format Paragraphs and Page Elements 2 Identifying Natural Divisions It is normal for a
Adobe Dreamweaver CC 14 Tutorial
Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site
ADOBE DREAMWEAVER CS3 TUTORIAL
ADOBE DREAMWEAVER CS3 TUTORIAL 1 TABLE OF CONTENTS I. GETTING S TARTED... 2 II. CREATING A WEBPAGE... 2 III. DESIGN AND LAYOUT... 3 IV. INSERTING AND USING TABLES... 4 A. WHY USE TABLES... 4 B. HOW TO
Creating Web Pages with Dreamweaver CS 6 and CSS
Table of Contents Overview... 3 Getting Started... 3 Web Page Creation Tips... 3 Creating a Basic Web Page Exercise... 4 Create a New Page... 4 Using a Table for the Layout... 5 Adding Text... 6 Adding
Chapter 7 Page Layout Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D
Chapter 7 Page Layout Basics Key Concepts Copyright 2013 Terry Ann Morris, Ed.D 1 Learning Outcomes float fixed positioning relative positioning absolute positioning two-column page layouts vertical navigation
Cascading Style Sheets (CSS)
Cascading Style Sheets (CSS) W3C standard for defining presentation of web documents (way documents are displayed or delivered to users typography, colours, layout etc) Presentation separated from content
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
ITNP43: HTML Lecture 4
ITNP43: HTML Lecture 4 1 Style versus Content HTML purists insist that style should be separate from content and structure HTML was only designed to specify the structure and content of a document Style
How To Create A Web Page On A Windows 7.1.1 (For Free) With A Notepad) On A Macintosh (For A Freebie) Or Macintosh Web Browser (For Cheap) On Your Computer Or Macbook (
CREATING WEB PAGE WITH NOTEPAD USING HTML AND CSS The following exercises illustrate the process of creating and publishing Web pages with Notepad, which is the plain text editor that ships as part of
How to Add a Transparent Flash FLV movie to your Web Page Tutorial by R. Berdan Oct 16 2008
How to Add a Transparent Flash FLV movie to your Web Page Tutorial by R. Berdan Oct 16 2008 To do this tutorial you will need Flash 8 or higher, Dreamweaver 8 or higher. You will also need some movie clips
Google Sites: Creating, editing, and sharing a site
Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly
USD WEB SERVICES ADOBE DREAMWEAVER CSS DEVELOPMENT
WEB SERVICES ADOBE DREAMWEAVER CSS DEVELOPMENT INFORMATION TECHNOLOGY SERVICES UNIVERSITY OF SAN DIEGO DEVELOPED BY JOY BRUNETTI [email protected] X8772 APRIL 2006 TABLE OF CONTENTS DREAMWEAVER CSS
Dreamweaver and Fireworks MX Integration Brian Hogan
Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The
Web Development CSE2WD Final Examination June 2012. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards?
Question 1. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards? (b) Briefly identify the primary purpose of the flowing inside the body section of an HTML document: (i) HTML
Development Perspective: DIV and CSS HTML layout. Web Design. Lesson 2. Development Perspective: DIV/CSS
Web Design Lesson 2 Development Perspective: DIV/CSS Why tables have been tabled Tables are a cell based layout tool used in HTML development. Traditionally they have been the primary tool used by web
3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7
Microsoft Word: Advanced Features for Publication, Collaboration, and Instruction For your MAC (Word 2011) Presented by: Karen Gray ([email protected]) Word Help: http://mac2.microsoft.com/help/office/14/en-
How to create pop-up menus
How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached
Terminal 4 Site Manager User Guide. Need help? Call the ITD Lab, x7471
Need help? Call the ITD Lab, x7471 1 Contents Introduction... 2 Login to Terminal 4... 2 What is the Difference between a Section and Content... 2 The Interface Explained... 2 Modify Content... 3 Basic
Madison Area Technical College. MATC Web Style Guide
Madison Area Technical College MATC Web Style Guide July 27, 2005 Table of Contents Topic Page Introduction/Purpose 3 Overview 4 Requests for Adding Content to the Web Server 3 The MATC Public Web Template
Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design
Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design Contents HTML Quiz Design CSS basics CSS examples CV update What, why, who? Before you start to create a site, it s
Responsive Web Design for Teachers. Exercise: Building a Responsive Page with the Fluid Grid Layout Feature
Exercise: Building a Responsive Page with the Fluid Grid Layout Feature Now that you know the basic principles of responsive web design CSS3 Media Queries, fluid images and media, and fluid grids, you
Garfield Public Schools Fine & Practical Arts Curriculum Web Design
Garfield Public Schools Fine & Practical Arts Curriculum Web Design (Half-Year) 2.5 Credits Course Description This course provides students with basic knowledge of HTML and CSS to create websites and
-SoftChalk LessonBuilder-
-SoftChalk LessonBuilder- SoftChalk is a powerful web lesson editor that lets you easily create engaging, interactive web lessons for your e-learning classroom. It allows you to create and edit content
Creating a Resume Webpage with
Creating a Resume Webpage with 6 Cascading Style Sheet Code In this chapter, we will learn the following to World Class CAD standards: Using a Storyboard to Create a Resume Webpage Starting a HTML Resume
KOMPOZER Web Design Software
KOMPOZER Web Design Software An IGCSE Student Handbook written by Phil Watkins www.kompozer.net CONTENTS This student guide is designed to allow for you to become a competent user* of the Kompozer web
Instructions for Formatting APA Style Papers in Microsoft Word 2010
Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find
HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout Fall 2011, Version 1.0 Table of Contents Introduction...3 Downloading
Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.
28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML
ITP 101 Project 3 - Dreamweaver
ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with
CST 150 Web Design I CSS Review - In-Class Lab
CST 150 Web Design I CSS Review - In-Class Lab The purpose of this lab assignment is to review utilizing Cascading Style Sheets (CSS) to enhance the layout and formatting of web pages. For Parts 1 and
We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.
Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded
In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move
WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen
IAS Web Development using Dreamweaver CS4
IAS Web Development using Dreamweaver CS4 Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 609 734 8044 * [email protected] Information Technology Group [2] Institute
Building a Horizontal Menu in Dreamweaver CS3 Using Spry R. Berdan
Building a Horizontal Menu in Dreamweaver CS3 Using Spry R. Berdan In earlier versions of dreamweaver web developers attach drop down menus to graphics or hyperlinks by using the behavior box. Dreamweaver
A send-a-friend application with ASP Smart Mailer
A send-a-friend application with ASP Smart Mailer Every site likes more visitors. One of the ways that big sites do this is using a simple form that allows people to send their friends a quick email about
General Electric Foundation Computer Center. FrontPage 2003: The Basics
General Electric Foundation Computer Center FrontPage 2003: The Basics September 30, 2004 Alternative Format Statement This publication is available in alternative media upon request. Statement of Non-discrimination
Web Development I & II*
Web Development I & II* Career Cluster Information Technology Course Code 10161 Prerequisite(s) Computer Applications Introduction to Information Technology (recommended) Computer Information Technology
Microsoft Word 2010. Quick Reference Guide. Union Institute & University
Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...
HTML TIPS FOR DESIGNING
This is the first column. Look at me, I m the second column.
CSS for Page Layout. Key Concepts
CSS for Page Layout Key Concepts CSS Page Layout Advantages Greater typography control Style is separate from structure Potentially smaller documents Easier site maintenance Increased page layout control
Creating Web Pages With Dreamweaver MX 2004
Creating Web Pages With Dreamweaver MX 2004 1 Introduction Learning Goal: By the end of the session, participants will have an understanding of: What Dreamweaver is, and How it can be used to create basic
Create a Poster Using Publisher
Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs
Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17
Web Design Revision AQA AS-Level Computing COMP2 204 39 minutes 39 marks Page of 7 Q. (a) (i) What does HTML stand for?... () (ii) What does CSS stand for?... () (b) Figure shows a web page that has been
JJY s Joomla 1.5 Template Design Tutorial:
JJY s Joomla 1.5 Template Design Tutorial: Joomla 1.5 templates are relatively simple to construct, once you know a few details on how Joomla manages them. This tutorial assumes that you have a good understanding
Excel 2003 A Beginners Guide
Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on
Utilizing Microsoft Access Forms and Reports
Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate
Google Sites. How to create a site using Google Sites
Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google
Create a Web Page with Dreamweaver
Create a Web Page with Dreamweaver Dreamweaver is an HTML editing program that allows the beginner and the advanced coder to create Web pages. 1. Launch Dreamweaver. Several windows appear that will assist
Dreamweaver CS5. Module 1: Website Development
Dreamweaver CS5 Module 1: Website Development Dreamweaver CS5 Module 1: Website Development Last revised: October 29, 2010 Copyrights and Trademarks 2010 Nishikai Consulting, Helen Nishikai Oakland, CA
WHITEPAPER. Skinning Guide. Let s chat. 800.9.Velaro www.velaro.com [email protected]. 2012 by Velaro
WHITEPAPER Skinning Guide Let s chat. 2012 by Velaro 800.9.Velaro www.velaro.com [email protected] INTRODUCTION Throughout the course of a chat conversation, there are a number of different web pages that
TLMC WORKSHOP: THESIS FORMATTING IN WORD 2010
Table of Contents Introduction... 2 Getting Help... 2 Tips... 2 Working with Styles... 3 Applying a Style... 3 Choosing Which Styles to Use... 3 Modifying a Style... 4 Creating A New Style... 4 Setting
Drupal Training Guide
Drupal Training Guide Getting Started Drupal Information page on the IT site: http://it.santarosa.edu/drupal On this page is information about Drupal sign up, what Drupal is, which is a content management
Adobe Illustrator CS6. Illustrating Innovative Web Design
Overview In this seminar, you will learn how to create a basic graphic in Illustrator, export that image for web use, and apply it as the background for a section of a web page. You will use both Adobe
Web Design & Development - Tutorial 04
Table of Contents Web Design & Development - Tutorial 04... 1 CSS Positioning and Layout... 1 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 2 Layout with CSS... 3 Review the
Creating A Webpage Using HTML & CSS
Creating A Webpage Using HTML & CSS Brief introduction. List key learning outcomes: Understanding the basic principles of hypertext markup language (HTML5) and the basic principles of the internal cascading
Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4
CMS Editor How-To Saving work in the CMS... 2 Edit an existing page... 2 Create a new page... 4 Create a side bar section... 4 Upload an image and add to your page... 5 Add an existing image to a Page...
PASTPERFECT-ONLINE DESIGN GUIDE
PASTPERFECT-ONLINE DESIGN GUIDE INTRODUCTION Making your collections available and searchable online to Internet visitors is an exciting venture, now made easier with PastPerfect-Online. Once you have
Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter)
Jadu Content Management Systems Web Publishing Guide Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Guidelines, Glossary, Tips, URL to Log In & How to Log Out... 2 Landing
Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library joe.gilbert@virginia.
Web Building Blocks Core Concepts for HTML & CSS Joseph Gilbert User Experience Web Developer University of Virginia Library [email protected] @joegilbert Why Learn the Building Blocks? The idea
Responsive Web Design: Media Types/Media Queries/Fluid Images
HTML Media Types Responsive Web Design: Media Types/Media Queries/Fluid Images Mr Kruyer s list of HTML Media Types to deliver CSS to different devices. Important note: Only the first three are well supported.
MS Word 2007 practical notes
MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the
Creating Accessible Documents in Word 2011 for Mac
Creating Accessible Documents in Word 2011 for Mac NOTE: Word 2011 for Mac does not offer an Accessibility Checker. After creating your document, you can double-check your work on a PC, to make sure your
Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.
Word Processing Microsoft Works Windows 95 The intention of this section is to instruct basic word processing skills such as creating, editing, formatting, saving and closing a new document. Microsoft
Dreamweaver. Introduction to Editing Web Pages
Dreamweaver Introduction to Editing Web Pages WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 INTRODUCTION TO DREAMWEAVER... 1 Document Window 3 Toolbar 3 Insert Panel 4 Properties Panel
File types There are certain image file types that can be used in a web page. They are:
Using Images in web design (Dreamweaver CC) In this document: Image file types for web pages Inserting an image Resizing an image in Dreamweaver CSS properties for image alignment and responsiveness nigelbuckner
Excel 2007 A Beginners Guide
Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on
Responsive Web Design Creative License
Responsive Web Design Creative License Level: Introduction - Advanced Duration: 16 Days Time: 9:30 AM - 4:30 PM Cost: 2197 Overview Web design today is no longer just about cross-browser compatibility.
Umbraco v4 Editors Manual
Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...
User Manual Sitecore Content Manager
User Manual Sitecore Content Manager Author: Sitecore A/S Date: November 2003 Release: Revision 4.3 Language: English Sitecore is a trademark of Sitecore A/S. All other brand and product names are the
Handout: Word 2010 Tips and Shortcuts
Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW
