Introducing XHTML: Module A: Web Design Basics

Slides:



Advertisements
Similar presentations
Web Development & Design Foundations with XHTML
Advertisements

Getting a Taste of Cascading Stylesheets Steve Mooradian December 14, 2005.
Upgrading to XHTML DECO 3001 Tutorial 1 – Part 1 Presented by Ji Soo Yoon 19 February 2004 Slides adopted from
Developing a Basic Web Page with HTML
Developing a Basic Web Page Posting Files on UMBC
1st Project Introduction to HTML.
Introducing HTML & XHTML:. Goals  Understand hyperlinking  Understand how tags are formed and used.  Understand HTML as a markup language  Understand.
Chapter ONE Introduction to HTML.
HTML Comprehensive Concepts and Techniques Intro Project Introduction to HTML.
1 HTML/XHTML Objectives Explain what HTML is and how Web pages use HTML Explain what HTML is and how Web pages use HTML Demonstrate how to create Web pages.
Unit 1 – Developing a Web Page. Objectives:  Learn the history of the Web and HTML  Describe HTML standards and specifications  Understand HTML elements.
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML Structure & syntax
CS117 Introduction to Computer Science II Lecture 1 Introduction to WWW and HTML Instructor: Li Ma Office: NBC 126 Phone: (713)
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Introducing XHTML: Module A: Web Design Basics.
XHTML1 Introduction to Web Pages Chapter 1. XHTML2 Objectives In this chapter, you will: Learn about the World Wide Web (WWW) Create simple Hypertext.
CA Professional Web Site Development Class 2: Anatomy of a Web Site and Web Page & Intro to HTML.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
XHTML By Trevor Adams. Topics Covered XHTML eXtensible HyperText Mark-up Language The beginning – HTML Web Standards Concept and syntax Elements (tags)
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
1 Tutorial 11 Creating an XML Document Developing a Document for a Cooking Web Site.
JavaScript Tutorial 1 - Introduction to JavaScript1 Tutorial 1 Introduction to JavaScript Section A – Programming, HTML, and JavaScript.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 1.
Web Application Programming Presented by: Mehwish Shafiq.
The Web Wizard’s Guide to HTML Chapter One World Wide Web Basics.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Introduction lab1. Suzanne J. Sultan 2 What is HTML? The definition of HTML is Hyper Text Markup Language. HTML is a computer language devised to allow.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
XHTML1 Introduction to Web Pages N100 Building a Simple Web Page.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML PROJECT #1 Project 1 Introduction to HTML. HTML Project 1: Introduction to HTML 2 Project Objectives 1.Describe the Internet and its associated key.
Chapter 1 Introduction to JavaScript.  Study the history of the World Wide Web  Work with well-formed Web pages  Learn about Web development  Learn.
HTML Structure & syntax
HTML Structure & syntax
4.01 How Web Pages Work.
4.01 How Web Pages Work.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Introduction to HTML Section A – Programming, HTML
Chapter 1 Introduction to HTML
Introducing XHTML: Module A: Web Design Basics
Chapter 1 Introduction to HTML.
HTML5 – Heading, Paragraph
Introduction To Web Design
Project 1 Introduction to HTML.
3.00cs HTML Overview 3.00cs Develop webpages.
Introduction to XHTML.
WEBSITE DESIGN Chp 1
Introducing HTML & XHTML:
1 Introduction to the Internet.
Web Page Concept and Design :
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Tutorial Developing a Basic Web Page
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
HTML What is Html? HTML stands for Hypertext Markup Language.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
AN INTRODUCTION BY FAITH BRENNER
Intro Project Introduction to HTML.
HTML Structure & syntax
4.01 How Web Pages Work.
WJEC GCSE Computer Science
4.02A HTML Overview 4.02 Develop web pages using various layouts and technologies. (Note to instructor: HTML tags are in red only to differentiate from.
4.01 How Web Pages Work.
Presentation transcript:

Introducing XHTML: Module A: Web Design Basics

Goals Understand hyperlinking Understand how tags are formed Understand HTML as a markup language Understand the role of the W3C

The World Wide Web Accessing cross-referenced documents, known as hypertext linking, is probably the most important aspect of the Web because it allows you to quickly open other Web pages

The World Wide Web A hypertext link, or hyperlink, contains a reference to a specific Web page that you can click to quickly open that Web page

The World Wide Web A document on the Web is called a Web page, identified by a unique address called the Uniform Resource Locator, or URL URL commonly referred to as a Web address

The World Wide Web A URL is a type of Uniform Resource Identifier (URI), which is a generic term for many types of names and addresses on the World Wide Web

The World Wide Web A Web site refers to the location on the Internet of the Web pages and related files (such as graphic files) that belong to a company, organization, or individual

HTML Documents Originally, people created Web pages using Hypertext Markup Language Hypertext Markup Language (HTML) is a simple language used to create the Web pages that appear on the World Wide Web

HTML Documents A markup language is a set of characters or symbols that define a document’s logical structure or how a document should be printed or displayed

HTML Documents HTML is based on an older language called Standard Generalized Markup Language, or SGML, which defines the data in a document independently of how the data will be displayed

HTML Documents A target output format refers to the medium in which a document will be displayed, such as a Web page or an online help system

Basic HTML Syntax HTML documents are text documents that contain: formatting instructions, called tags the text that is to be displayed on a Web page

Basic HTML Syntax HTML tags range from formatting commands to controls that allow user input Tags are enclosed in brackets (< >), and most consist of a starting tag and an ending tag that surround the text or other items they are formatting or controlling

Common Structure and Formatting HTML Tags

Basic HTML Syntax All HTML documents begin with <html> and end with </html> Two other important HTML tags are the <head> tag and the <body> tag

Basic HTML Syntax The <head> tag contains information that is used by the Web browser, and you place it at the start of an HTML document, after the opening <html> tag

Basic HTML Syntax The <head> tag pair and the tags it contains are referred to as the document head Following the document head is the <body> tag, which contains the document body

Basic HTML Syntax The <body> tag pair and the text and tags it contains are referred to as the document body A Web browser’s process of assembling and formatting an HTML document is called parsing or rendering

Basic HTML Syntax You use various parameters, called attributes, to configure many HTML tags You place an attribute before the closing bracket of the starting tag, and separate it from the tag name or other attributes with a space

Basic HTML Syntax

Web Page Design and Authoring Web page design, or Web design, refers to the visual design and creation of the documents that appear on the World Wide Web

Web Page Design and Authoring Web page authoring refers to the creation and assembly of the tags, attributes, and data that make up a Web page

Web Page Design and Authoring This is a subtle, but important distinction: A book on Web design teaches the visual and graphical design aspects of creating Web pages A book on XHTML teaches the more basic concepts that you need to get started, such as how to work with tags and attributes

The W3C Web page authors began to find it necessary to write slightly different HTML code for each Web browser in which they anticipated their Web page would be opened

The W3C To address the growing need for standards, Tim Berners-Lee established the World Wide Web Consortium, or W3C, in 1994 at MIT to oversee the development of Web technology standards

The W3C The W3C does not release a version of a particular technology. Instead, it issues a formal recommendation for a technology, which essentially means that the technology is (or will be) a recognized industry standard

Web Browsers At the time of this writing, Internet Explorer browsers are being used by more than 85% of the market. Netscape Navigator also makes up a large part of the browser market.

Web Browsers Three additional browsers that are worth noting are: Amaya (http://w3.org/amaya) Mozilla (http://www.mozilla.org) Opera (http://www.opera.com)

Web Browsers You must test your Web pages in every browser and browser version in which you anticipate they will be opened.