ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 8.

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Chapter 2 HTML Basics Key Concepts
HTML Overview - Cascading Style Sheets (CSS). Before We Begin Make a copy of one of your HTML file you have previously created Make a copy of one of your.
Creating Pages in XHTML
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 3: XHTML Coding © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
XP Introducing Cascading Style Sheets With Cascading Style Sheets (CSS), you can create one or more documents that control the appearance of some or all.
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
Introduction to Cascading Style Sheets (CSS) Module 2: HTML Basics LESSON 4.
HTML and XHTML Controlling the Display Of Web Content.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Marking Up With Html: A Hypertext Markup Language Primer
More HTML Chapter 4. 2 Nesting Tags How do you write the following in HTML? The wrong way: This is really, REALLY fun ! Tags must be correctly nested.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Computer Sciences Department
ULI101: XHTML Basics (Part III) Introduction to XHTML / Continued … Block-Level vs. Inline Elements (tags) Manipulating Text,  , Text Characteristics,,,,,,,,,,,,,,,
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Chapter 2 HTML (Hypertext Markup Language) Part I.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML (HyperText Markup Language)
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
Using Html Basics, Text and Links. Objectives  Develop a web page using HTML codes according to specifications and verify that it works prior to submitting.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Department of Information Technology Chapter 8 - Creating Hypertext links Lecturer: Ms Melinda Chung.
HTML, Part Showing Pictures: The Image Tags Image Tag Format –src short for source –alt for text –Can use absolute or relative pathname.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
XHTML/CSS Week 3. This Week  Quiz to revise last week (XHTML and DW)  CSS - Part 2  Using HTML Tables.
Cascading Style Sheets Orientation Learning Web Design: Chapter 11.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
1 Web Application Programming Presented by: Mehwish Shafiq.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 8.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 7.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
©SoftMoore ConsultingSlide 1 Introduction to HTML: Basic Document Structure.
2.1 XHTML. Motto High thoughts must have high language. –Aristophanes.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
INT222 – Internet Fundamentals
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Cascading Style Sheets Part 1 1 IT 130 – Internet and the Web.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
HTML Basics.
Marking Up with XHTML Tags describe how a web page should look
Introduction to XHTML.
Chapter 4 - Introduction to XHTML: Part 1
WEBSITE DESIGN Chp 1
Computers and Scientific Thinking David Reed, Creighton University
Creating a Web Page Using HTML
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Introduction to HTML- Basics
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Lesson 3: Cascading Style Sheets (CSS) and Graphical Elements
Lesson 2: HTML5 Coding.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 8

XHTML Validation, Tables in Dreamweaver Recall from Last Week:

The XHTML 1.0 Transitional web standard is maintained by the World Wide Web Consortium, popularly known as the W3C. Helpfully, the W3C has an automated code-validator at its web site: – Just enter the URL of your page and click Check. XHTML Validation

Things the Validator Will Complain About

Don't Put <h1> Inside <p> Don't Put headings inside paragraphs It's not legal to put headings inside of paragraphs. Headings must appear outside of paragraphs. Headings Can’t Be Inside Paragraphs

Don't Put Lists Inside Paragraphs Don't Put Lists Inside Paragraphs It's not legal to: Put lists inside of paragraphs Lists must appear outside of paragraphs. Lists Can’t Be Inside Paragraphs

Don't Cross Different Open and Close Tags Don't Cross Different Open and Close Tags If you open two or more tags in a row, without an intervening close tag, you must close the most recently opened tag first. So this is legal: <b><i>This text is in bold and italic.<i><b> But this is not: <b><i>This text is in bold and italic.<b><i> Open1 Open2 Close2 Close1

The validator will also complain about: Uppercase letters in tag or attribute names Missing “/” at the end of empty tags such as,,, etc. Missing alt attribute in img tags Missing tag Unclosed non-empty tags And, of course, anything else that violates the XHTML 1.0 specification. Other Validator Complaints

CSS Terminology and Scope

The various elements of a CSS rule have names: blockquote { font-style: italic; } Selector Property Value CSS Terminology

Each CSS rule has “scope” that the browser uses when two rules specify different values for the same property. Example: CSS Scope i { color: aqua; } b { color: red; } Will this font be rendered in aqua or red? How about this font?

Each CSS rule has “scope” that the browser uses when two rules specify different values for the same property. Example: CSS Scope i { color: aqua; } b { color: red; } Will this font be rendered in aqua or red? How about this font? Answer: red Answer: aqua The CSS rule associated with the tag closest to the content “wins.”

Midterm Review, Graphic Hyperlinks, Nested Tables This Week:

Midterm Review This Week:

Know and be able to identify: Attributes, attribute names, attribute values Open tags, close tags, empty tags Selectors, properties, property values How is a CSS file attached to an HTML file? Attribute values must be enclosed in quotes Empty tags must end with “ />” Midterm Review

Know how to write and identify correct/incorrect examples of: XHTML excerpts, including –Proper and improper nesting –Proper and improper tag open/close orders –Proper syntax, including required elements (e.g., in the section, and alt attributes in img tags, etc.) –Minimum legal structure –Proper syntax for HTML entities Midterm Review

Know how to write and identify correct/incorrect examples of: XHTML excerpts, including –Tables, Lists, Blockquotes, Paragraphs, Horizontal Rules, and all the other tags we’ve learned –Emphasis vs. Cite vs. Italic; Strong vs. Bold –Anchor tags –The parts of a URL Midterm Review

Know how to write and identify correct/incorrect examples of: CSS rules, including –The proper use of braces, colons, and semicolons –The meaning of each pair of hexadecimal characters in color specifications; also how to use named colors (you don’t need to memorize the list of 16 named colors, though) –Pseudo-classes for anchor tags –The meaning and uses of a CSS class and how to define one (and how to apply it in your HTML code) –Different units for specifying font sizes Midterm Review

Know how to write and identify correct/incorrect examples of: CSS rules, including –How to read a font-family list –The meaning of common CSS properties such as background-color, color, font-family, font-weight, font- style, etc. Midterm Review

Know some of the important historical figures we’ve learned about and what they did: Ted Nelson Tim Berners-Lee Mark Andreessen Know the two image formats most widely supported by web browsers and when to use each: GIF JPEG Midterm Review

Know what a “comment” is and how to mark one in HTML/XHTML: CSS: /* here’s a comment */ Know the “scope”rules for CSS The rule closest to the content “wins” Midterm Review

Graphic Hyperlinks and Nested Tables Links, Nested Tables

Graphics can be made into links by surrounding the tag with anchor tags ( ). Also, table cells can contain nested tables. The blue cells on the top, left, and bottom, plus the large white area are constructed of one table. The page title (“What You Will Learn”), text, and graphic are each in a separate cell of a nested table.

Midterm exam next week. For Next Week