Creating and Linking Web Pages

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

Intro to HTML Basics HTML = Hypertext Mark-up Language HTML = Hypertext Mark-up Language HTML is a plain-text file that can be created using a text editor.
HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
Teppo Räisänen LIIKE/OAMK 2010
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
 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.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
Marking Up With Html: A Hypertext Markup Language Primer
 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.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
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.
Introduction to HTML. Topics HTML –What is HTML –Parts of an HTML Document –HTML Tags.
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.
XP Mohammad Moizuddin Creating Web Pages with HTML Tutorial 1 1 New Perspectives on Creating Web Pages With HTML Tutorial 1: Developing a Basic Web Page.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
Copyright 2006 South-Western/Thomson Learning Chapter 17 Creating and Linking Web Pages.
Creating and Linking Web Pages Copyright 2006 South-Western/Thomson Learning.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
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 Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags 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.
TNPW1 Ing. Jiří Štěpánek.  Tags  Marks for elements ▪ Pair ▪ Start and end tag ( Paragraph text ) ▪ Single ▪ Only start tag, according to XHTML 1.0.
Let’s Try It! Open Notepad
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
Chapter 8 Introduction to HTML and Applets
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Chapter 24 – Introduction to XHTML Basic: Part I
LAB Work 01 MBA 61062: E-Commerce
Marking Up with XHTML Tags describe how a web page should look
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Creating a Home Page in HTML
3.00cs HTML Overview 3.00cs Develop webpages.
Hosted by Coach Slanina
Chapter 1: Introduction to XHTML (part 1)
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
Web Programming– UFCFB Lecture 5
Tag Basics.
COMPUTING FUNDAMENTALS
HTML (HyperText Markup Language)
A guide to HTML.
3.02D HTML Overview 3.02 Develop webpages.
Web Design and Development
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
Introduction to HTML.
Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer
Basic HTML Workshop.
Marking Up with XHTML Tags describe how a web page should look
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
Marking Up with XHTML Tags describe how a web page should look
3.02D HTML Overview 3.02 Develop webpages.
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.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

Creating and Linking Web Pages Copyright 2006 South-Western/Thomson Learning

HTML Tags Make up the code that Web browsers understand Normally work in pairs, but some work alone Can be written in UPPERCASE or lowercase Are written in angle brackets < > Open HTML tags start commands <Center> Close HTML tags stop commands </Center> Click the mouse or tap the RIGHT ARROW key to continue.

Basic HTML Tags These tags provide the basic structure of a Web page <HTML> </HTML> begins and ends a Web page <HEAD> </HEAD> creates a header for a Web page <TITLE> </TITLE> displays a title in the title bar of the browser <BODY> </BODY> causes words and pictures to display in the main viewing area of the browser Click the mouse or tap the RIGHT ARROW key to continue.

File Extension A three- or four-letter code that identifies a file type Separated from the filename by a period PowerPoint files use .ppt extension Word files use .doc extension Exact and complete filenames and extensions must be used in HTML documents Click the mouse or tap the RIGHT ARROW key to continue.

Basic Formatting Tags Formatting tags help organize and add interest to Web pages <P> </P> leaves one blank line and begins a new paragraph <BR> begins a new line <TITLE> </TITLE> places a title in the title bar of the Web browser <TITLE> tags display title Click the mouse or tap the RIGHT ARROW key to continue.

Headings and Nested Tags Heading tags create a bold heading in a font larger than the body text Nested tags are organized in pairs moving from the outside in <CENTER> <H2> Mission Log <H2> <CENTER> Click the mouse or tap the RIGHT ARROW key to continue.

Bulleted List Tags Tags that create bulleted lists must be nested correctly <UL> <LI>Launched rocket on December 7, 1972.</LI> <LI>Landed on the moon on December 11, 1972.</LI> <LI>Splashdown took place on December 19, 1972.</LI> </UL> Click the mouse or tap the RIGHT ARROW key to continue.

Sample Web Page This Web page has headings and a bulleted list <H2> tags create heading <CENTER> tags center text heading <HR> tag creates a line <B> tag creates bold text <UL> and <LI> tags create a bulleted list Click the mouse or tap the RIGHT ARROW key to continue.

<A HREF="http://www.nasa.gov">Link to NASA</A> Adding Hyperlinks Hyperlinks are created with an anchor tag A hypertext reference is placed between quotation marks <A HREF="http://www.nasa.gov">Link to NASA</A> Hyperlink created with anchor tag Click the mouse or tap the RIGHT ARROW key to continue.

<BODY BGCOLOR=WHITE> Adding Color The background color of a Web page can be set with HTML tags An attribute is added to the tag A value is given for the attribute <BODY BGCOLOR=WHITE> Tag Attribute Value Click the mouse or tap the RIGHT ARROW key to continue.

Graphics Graphics should be in a format that allows small file sizes for quick loading GIF JPEG Place graphics in the correct folder Display graphics with the <IMG> tag Indicate width and height attributes <IMG SRC="images/title.gif" WIDTH="627" HEIGHT="148"> Click the mouse or tap the RIGHT ARROW key to continue.

Linking Pages An index page can be used to link Web pages List each page name on the index page Create a link from each page name to that page <P><B>Web Site Index </B></P> <A HREF="webpage7.html">Mission Overview</A><BR> <A HREF="webpage8.html">Photo Gallery</A><BR> <A HREF="webpage9.mht">Astronaut Bio, Cernan</A><BR> <A HREF="webpage10.mht">Astronaut Bio, Evans</A><BR> <A HREF="webpage11.mht"> Astronaut Bio, Schmitt </A><BR> <A HREF="webpage12.mht">Apollo 17 Slide Show</A><BR> Click the mouse or tap the RIGHT ARROW key to continue.

Review HTML code Allows Web browsers to display Web pages Must be written in uppercase Does not include tags that work in pairs Read the question and decide which answer you think is correct. Click the mouse to see the correct answer. Click the mouse or tap the RIGHT ARROW key to continue.

Review Answer HTML code Allows Web browsers to display Web pages Click the mouse or tap the RIGHT ARROW key to continue.

Review Which pair of tags should be used to begin and end a Web page? <BODY> </BODY> <TITLE> </TITLE> <HTML> </HTML> Read the question and decide which answer you think is correct. Click the mouse to see the correct answer. Click the mouse or tap the RIGHT ARROW key to continue.

Review Which pair of tags should be used to begin and end a Web page? <HTML> </HTML> Answer Click the mouse or tap the RIGHT ARROW key to continue.

Review Which pair of tags should be used to begin and end a bulleted list? <LI> </LI> <UL> </UL> <CENTER> </CENTER> Read the question and decide which answer you think is correct. Click the mouse to see the correct answer. Click the mouse or tap the RIGHT ARROW key to continue.

Review Which pair of tags should be used to begin and end a bulleted list? <UL> </UL> Answer Click the mouse or tap the RIGHT ARROW key to continue.

Review An anchor tag in HTML creates a New paragraph Bulleted list Hyperlink Read the question and decide which answer you think is correct. Click the mouse to see the correct answer. Click the mouse or tap the RIGHT ARROW key to continue.

Review Answer An anchor tag in HTML creates a Hyperlink Click the mouse or tap the RIGHT ARROW key to continue.

Review In <BODY BGCOLOR=WHITE>, BGCOLOR is the Tag Attribute Value Read the question and decide which answer you think is correct. Click the mouse to see the correct answer. Click the mouse or tap the RIGHT ARROW key to continue.

Review Answer In <BODY BGCOLOR=WHITE>, BGCOLOR is the Attribute Click the mouse or tap the RIGHT ARROW key to continue.