Advanced Web Design. Zac Van Note. www.design-link.org



Similar documents
Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

ITNP43: HTML Lecture 4

Cascading Style Sheets (CSS)

Short notes on webpage programming languages

HTML CSS Basic Structure. HTML Structure [Source Code] CSS Structure [Cascading Styles] DIV or ID Tags and Classes. The BOX MODEL

ICT 6012: Web Programming

Web Development CSE2WD Final Examination June (a) Which organisation is primarily responsible for HTML, CSS and DOM standards?

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

HTML TIPS FOR DESIGNING

8 STEPS TO CODE KILLER RESPONSIVE S

What is CSS? Official W3C standard for controlling presentation Style sheets rely on underlying markup structure

Introduction to Web Design Curriculum Sample

Table of Contents THE DESIGNER S GUIDE TO CREATING NEWZAPP DRAG AND DROP TEMPLATES... 6 THE NEWZAPP SYSTEM... 7

Website Planning Checklist

How to Properly Compose HTML Code : 1

CIS 467/602-01: Data Visualization

{color:blue; font-size: 12px;}

Contents. Downloading the Data Files Centering Page Elements... 6

Cascading Style Sheet (CSS) Tutorial Using Notepad. Step by step instructions with full color screen shots

Web Design and Databases WD: Class 7: HTML and CSS Part 3

Outline of CSS: Cascading Style Sheets

Web Development 1 A4 Project Description Web Architecture

Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:

BlueHornet Whitepaper

Create Webpages using HTML and CSS

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)

ART 379 Web Design. HTML, XHTML & CSS: Introduction, 1-2

Script Handbook for Interactive Scientific Website Building

Introduction to XHTML. 2010, Robert K. Moniot 1

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design

Chapter 1 Programming Languages for Web Applications

Campaign Guidelines and Best Practices

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout

HTML, CSS, XML, and XSL

WEB DESIGN LAB PART- A HTML LABORATORY MANUAL FOR 3 RD SEM IS AND CS ( )

Development Perspective: DIV and CSS HTML layout. Web Design. Lesson 2. Development Perspective: DIV/CSS

The Web Web page Links 16-3

GUIDE TO CODE KILLER RESPONSIVE S

Creating HTML authored webpages using a text editor

Designing HTML s for Use in the Advanced Editor

How To Create A Web Page On A Windows (For Free) With A Notepad) On A Macintosh (For A Freebie) Or Macintosh Web Browser (For Cheap) On Your Computer Or Macbook (

Programming the Web 06CS73 SAMPLE QUESTIONS

Web Authoring CSS. Module Descriptor

Advanced Drupal Features and Techniques

Creating Effective HTML Campaigns

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.

Chapter 1. Introduction to web development

Creating a Resume Webpage with

About webpage creation

TIME SCHEDULE OBJECTIVES

Caldes CM12: Content Management Software Introduction v1.9

Website Development. 2 Text. 2.1 Fonts. Terry Marris September We see how to format text and separate structure from content.

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

HTML Tables. IT 3203 Introduction to Web Development

Version 4.0. Unit 3: Web Design. Computer Science Equity Alliance, Exploring Computer Science Unit 3: Web Design 102

An overview of designing HTML s for Hotmail, Yahoo, Outlook, Lotus Notes and AOL

A send-a-friend application with ASP Smart Mailer

How to Create an HTML Page

Web Design with Dreamweaver Lesson 4 Handout

Yandex.Widgets Quick start

An Attribute is a special word used inside tag to specify additional information to tag such as color, alignment etc.

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

HTML and CSS. Elliot Davies. April 10th,

ICE: HTML, CSS, and Validation

<script type="text/javascript"> var _gaq = _gaq []; _gaq.push(['_setaccount', 'UA ']); _gaq.push(['_trackpageview']);

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D

CSS 101. CSS CODE The code in a style sheet is made up of rules of the following types

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

How to code, test, and validate a web page

WEB DEVELOPMENT IA & IB (893 & 894)

JISIS and Web Technologies

JJY s Joomla 1.5 Template Design Tutorial:

Contents. Introduction Downloading the Data Files... 2

WEB PROGRAMMING LAB (Common to CSE & IT)

AJAX The Future of Web Development?

CHAPTER 10. When you complete this chapter, you will be able to:

The Essential Guide to HTML Design

Beginning Dreamweaver Zac Van Note

Introduction to Web Technologies

MCH Strategic Data Best Practices Review

The Essential Guide to HTML Design

Frames. In this chapter

WordPress and HTML Basics

Web layout guidelines for daughter sites of Scotland s Environment

Web Design for Programmers. Brian Hogan NAPCS Slides and content 2008 Brian P. Hogan Do not reproduce in any form without permission

Transcription:

Advanced Web Design Zac Van Note www.design-link.org

COURSE ID: CP 341F90033T COURSE TITLE: Advanced Web Design COURSE DESCRIPTION: 2/21/04 Sat 9:00:00 AM - 4:00:00 PM 1 day

Recommended Text: HTML for the World Wide Web with XHTML and CSS: Visual QuickStart Guide, Fifth Edition by Elizabeth Castro, Peachpit Press, ISBN: 0321130073 Find an extensive list of links at: www.design-link.org

Introductions

Basic HTML Review

Elements, Attributes, Values

HTML <html> Everything (usually) goes in between these tags. </html>

HEAD <head> Stuff like scripts, title and meta tags go in here. </head>

TITLE <title> Title of your page goes in here </title>

BODY <body> The visible parts of your page go in here. </body>

P, BR <p> Text goes in here.<br> Put in the br tag to break lines of text to another line. </p>

FONT <p> <font size= 2 face= futura,arial,sans serif color= purple > <b>bold text</b>, <i>italic text</i>, <strong>strong text, and <em>strong/emphasized text</em></strong> </font> </p>

HR <p>text goes here, and there will be a horizontal rule beneath it.</p> <hr> <p>text goes here, and there will be a horizontal rule above it.</p>

IMG <img src= filename.gif /> <img src= http://www.yourdomain.com/logo.jpg />

A (links) <a href= doclink.htm >Text link goes here.</a> <a href= doclink.htm > <img src= linkimg.gif /> </a> A (anchors) <a name= top >Text is optional here.</a> <a href= #top >Text or picture here will link to the top anchor.</a>

A (e-mail links) <a href= mailto:info@design-link.org >Send an e-mail</a>

A (targeting) <a href= http://www.design-link.org target= _blank > Go to design-link now! </a>

BODY... more attributes <body bgcolor= #FFFFFF background= bgimage.gif leftmargin= x topmargin= y marginwidth= x marginheight= y text= blue link= pink vlink= purple alink= red onload= {script goes here} > The visible parts of your page go in here. </body>

DOCTYPEs HTML, XHTML strict, transitional, frameset, standard and quirks modes <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/tr/html4/loose.dtd > <html> etc. </html> <!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/tr/xhtml1/dtd/ xhtml1-transitional.dtd > <html xmlns= http://www.w3.org/1999/xhtml >etc. </html>

META TAGS <meta name= keywords content= specific words, separated by commas that describe the content on the page/site /> <meta name= description content= a short description of the content on the page/site /> <meta name= author content= list the author of the page /> <meta name= generator content= program that created the page /> <meta name= copyright content= year copyright holder />

TABLES <table width= 400 bgcolor= yellow align= center > <tr> <td align= center valign= middle >Text or image 1A</td> <td>text or image 2A</td> </tr> <tr align= center valign= middle > <td>text or image 1B</td><td>Text or image 2B</td> </tr> </table>

CSS -- Creating Styles

Selecting Elements by Name selector{property:value;} h1{color:red;}

Selecting Elements by Context context element{property:value;} h1 em{color:red;}

Selecting Elements by Class element.class{property:value;} em.very{color:red;}

Selecting Elements by ID element#id{property:value;} div#article{color:red;}

CSS -- Applying Styles

CSS -- Internal Style Sheet <head> <style type= text/css > img{color:red; border:solid; } </style> </head>

CSS -- Create an External Style Sheet img { color:red; border:solid; } p { font:arial; color:blue; } base.css /* This will make all of your paragraph text arial and blue */

CSS -- Linking to an External Style Sheet <head> <link rel= styleheet type= text/css href= base.css > </head>

CSS -- Applying Styles Locally <img src="palau250.jpg" width="250" height="163" style= color:red; border:solid align= left >

CSS -- Text Formatting h1, h2 {font-family: "Arial Black", "Helvetica Bold", sans-serif;font-weight: normal} h1 {font-size: 20px } h2 {font-size: 14px} p {font-family: "Verdana", "Helvetica", sans-serif; font-size:12px; lineheight:150%}. emph {font-style: italic; font-weight:bold}

CSS -- Positioning DIV tags Dreamweaver Layers (layout -- 2float.html) SitePoint.com AListApart.com

Sound, Video & Animation Background Sound (IE only) <bgsound src= dakota.mp3 loop= 2 > Quicktime Real Media Windows Media Player Flash Shockwave

Frames

Forms

Scripting/Programming Languages Javascript Java JSP

Scripting/Programming Languages CGI -- Perl ASP ASP.net PHP ColdFusion

Search Engine/Directory Submissions SearchEngineWatch.com Google / AOL / Netscape Inktomi / MSN / HotBot Yahoo dmoz teoma / ask jeeves alltheweb / fast / lycos

Pay-per-click Search Engine Advertising Overture Google AdWords

Search Engine Optimization SearchEngineWatch.com Overture.com MarketLeap.com

Using Dreamweaver

Aspects of Web Design Saturday, February 28, 2004 9 4 Be there to learn about... XHTML pop-up windows rollovers advanced stylesheet techniques how to upload and maintain Web pages Work on your own Web project with one-on-one assistance and more!