producing web pages using html

35
Producing Web Producing Web Pages using HTML Pages using HTML The Computer as an Educational Tool: The Computer as an Educational Tool: Productivity and Problem Solving” Productivity and Problem Solving” ©Richard C. ©Richard C. Forcier Forcier and Don E. Descy and Don E. Descy

Upload: others

Post on 12-Sep-2021

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Producing Web Pages using HTML

Producing Web Producing Web Pages using HTMLPages using HTML

“The Computer as an Educational Tool: The Computer as an Educational Tool: Productivity and Problem Solving”Productivity and Problem Solving”

©Richard C.©Richard C. ForcierForcier and Don E. Descyand Don E. Descy

Page 2: Producing Web Pages using HTML

Topics:Topics:

IntroductionThe World Wide WebBasic HTMLHTML EditorsConclusions/Questions

Page 3: Producing Web Pages using HTML

WWW Pages:WWW Pages:

Easy to makeWritten in HTML:HyperText Markup LanguageSaved as “text” or “ASCII”Typical student=8 minutesNew page .1 seconds!!

Page 4: Producing Web Pages using HTML

HTML:HTML:HyperText Markup LanguageNOT a programming

language!!!A markup languageTells browser how to

display pageUses tags : <tag>

Page 5: Producing Web Pages using HTML

Markup Language:Markup Language:¶This is the story about a big

dog. The dog said: ¶Hi, I am theI big dog. I hope that you arel learning lots about HTMLThis is the story of a big

dog. The Dog said:Hi, I am the big dog. I hopethat you are learning...

Page 6: Producing Web Pages using HTML

HTML Tags (1):HTML Tags (1):

Between lt < and gt >Not case specificThree Types:

Informational: <html>Single: <br>Paired: <center> </center>

Page 7: Producing Web Pages using HTML

HTML Tags HTML Tags --Informational:Informational:

Information for BrowserMany not needed but good form <html>

<head> </head><body> </body></html>

Page 8: Producing Web Pages using HTML

HTML Tags HTML Tags -- Single:Single:

Usually text change<br> End text, don’t skip

line<hr> Horizontal line

Page 9: Producing Web Pages using HTML

HTML Tags HTML Tags -- Paired:Paired:

Temporary change<h1>largest heading</h1><center>center text</center><i>italics</i><b>bold</b>

<p>stop line, skip next line</p><u> ? </u>

Page 10: Producing Web Pages using HTML

Example:Example:<html><head><title>My First Web Page</title></head><body><center><h1>Don's Web

Page</h1></center><hr></body></html>

Page 11: Producing Web Pages using HTML
Page 12: Producing Web Pages using HTML

Example 2:Example 2:<html><head><title>My First Web Page</title></head><body bgcolor="#FFFFFF"><center><h1>Don's Web

Page</h1></center><hr></body></html>

Page 13: Producing Web Pages using HTML

<body bgcolor="#FFFFFF">

<body bgcolor="#OOFFOO">

Page 14: Producing Web Pages using HTML

Background Colors:Background Colors:<body bgcolor="#FFFFFF">White = #FFFFFFRed = #FF0000Green = #00FF00BlueBlue = #0000FFMandarin Orange =

#E47833

Page 15: Producing Web Pages using HTML

Adding Links:Adding Links:

<a href="location" > Hot link</a>

<a href="http://www.disney.com">

Disney Page</a><a href="don.html">

Don's Page</a>

Page 16: Producing Web Pages using HTML

Example 3:Example 3:<html><head><title>My First Web Page</title></head><body bgcolor="#FFFFFF"><center><h1>Don's Web

Page</h1></center><hr>XXXX</body></html>

Page 17: Producing Web Pages using HTML

<P>I like Don's Page!<p>I like <a

href="http://lme.mankato.msus.edu/ded/don.html">Don's</a>Page!

<P>

Page 18: Producing Web Pages using HTML

<html><head><title>My First Web Page</title></head><body bgcolor="#FFFFFF"><center><h1>Don's Web Page</h1></center><hr><P>I like Don's Page!<p>I like <a

href="http://lme.mankato.msus.edu/ded/don.html">Don's</a> Page!

<P></body></html>

Page 19: Producing Web Pages using HTML
Page 20: Producing Web Pages using HTML
Page 21: Producing Web Pages using HTML

Adding Images:Adding Images:

<img src=”image file name" >

<img src="don.gif">

Page 22: Producing Web Pages using HTML

<html><head><title>My First Web Page</title></head><body bgcolor="#FFFFFF"><center><h1>Don's Web Page</h1></center><hr><P>I like Don's Page!<p>I like <a

href="http://lme.mankato.msus.edu/ded/don.html">Don's</a> Page!

<P>XXXX</body></html>

Page 23: Producing Web Pages using HTML

<hr><p><center><img src="don.gif"></center><p><hr>

Page 24: Producing Web Pages using HTML

<html><head><title>My First Web Page</title></head><body bgcolor="#FFFFFF"><center><h1>Don's Web Page</h1></center><hr><P>I like Don's Page!<p>I like <a

href="http://lme.mankato.msus.edu/ded/don.html">Don's</a> Page!

<P><hr><p><center><img src="don.gif"></center><p><hr></body></html>

Page 25: Producing Web Pages using HTML
Page 26: Producing Web Pages using HTML
Page 27: Producing Web Pages using HTML

HTML EditorsHTML Editors

Page 28: Producing Web Pages using HTML

HTML Editors:HTML Editors:

Use like a word processorEasily import picturesMost everything automatedNO need to write HTMLHTML written in the background

Page 29: Producing Web Pages using HTML

HomePageHomePage

www.filemaker.com/products/homepage3.htmlWindows, NT, MacClip art, templates, AppletsVery easy to use$99

Page 30: Producing Web Pages using HTML

PageMillPageMill

www.Adobe.com/prodindex/pagemill/prodinfo.htmlWeb site creation and managementIntegrates many packages$99

Page 31: Producing Web Pages using HTML

MS FrontPageMS FrontPage

www.microsoft.com/frontpage/Web site creation and management$49.95 !

Page 32: Producing Web Pages using HTML

Netscape ComposerNetscape Composer

www.netscape.com/Built-in to CommunicatorPowerful, easy to useFree !!

Page 33: Producing Web Pages using HTML

Tool barsTool barsHomePage

Adobe PageMill

Netscape Composer

Page 34: Producing Web Pages using HTML

Questions??Questions??

Page 35: Producing Web Pages using HTML