Exploring Microsoft Word 97
Download
Report
Transcript Exploring Microsoft Word 97
HyperText Markup Language
(HTML)
Developing a Web Page
Objectives
Define Tag
Discuss the functions of HTML Tags
Review Hyperlinks
Methods of Creating HTML Documents
What’s a Tag?
A Tag is a code that is inserted into a
document that identifies the formatting
that should be applied to that location.
– Enclosed in angle brackets
<title>
– End tag includes a slash
</title>
– Usually occur in pairs
– Can be nested within each other
For Example
<html>
<title>John Sullivan's Page</title>
<title>John <B>Sullivan's</B> Page</title>
<a href=“http://www.stfx.ca/”>StFX Home Page</a>
Creating HTML Documents
Copy HTML text from an existing Web
document
Use a plain text editor (Notepad)
Microsoft Word, “Save as” HTML type
HTML development tool (HoTMetaL)
Netscape Page Wizard
Netscape Page Wizard
Example
<HTML>
<HEAD>
<TITLE>A Sample HTML Page</TITLE>
</HEAD>
<BODY>
<H1>HTML is a Piece of Cake</H1>
<P>Learning and using HTML is going to be a
blast. This is the first paragraph.
</P>
<P>This is the second.
</P>
</BODY>
</HTML>
Screen Results
Summary
Creating HTML documents
Using Tags
Hyperlinks
Tools for creating and modifying web
documents
Assignment (Due July 24th)
Create Your Own Web Page
Use any theme you want (real or
fictional)
Show some style!
– Color, bold, italics, etc.
At least five links to other sites
Insert at least three images
Link to your e-mail
E-mail me your URL
Be creative and have fun with it!