McJeff's HTML 101 CLASS #2 Printable Version
You must have or get some images to place
images on your page. If you want to use the
same images we show in the example.
You can go to http://www.mcjeff.com/free.htm
We have tons of free images, backgrounds
and animations there.
IMAGES USED IN THIS CLASS
"Get them free at http://www.mcjeff.com/free.htm "
NOTE:
.GIF and .JPG are image files.
Save your html files to a floppy, save all
your
image files on the same floppy disk for now.
You can save hundreds of images and
html files on a single floppy.
McJeff's HTML Class #2
WRITE THIS HTML CODE
================================================
<html>
<head>
<title>Welcome to my HTML 101 web page</title>
</head>
<body background="blue.jpg" text="gold">
<center>This is the text that will appear on my web page.</center>
<img src="fish.gif">
<center>I said to write about a paragraph of text about anything you like. I like Fish, dig this crazy fish.</center>
<img src="bike.gif">
So type what you like, Next we add style.
<center><img src="shark.gif"></center>
<center>Wow!!</center>
This is an exercise of adding images to a web page.
</body>
</html>
================================================
END OF HTML CODE, SAVE FILE as INDEX.HTM.
NEW TAGS
<img src="image file name">
Img src = IMAGE SOURCE
Example: <img src="fish.gif">
<body background="image file
name">
Example: <body background="blue.jpg" >
HOMEWORK:
Write a few pages using different background images and text colors. Write a few pages with different images and backgrounds,
You can cut and paste any of the html code on this page.
We'll be seeing you,
McJeff
YOUR PAGE SHOULD LOOK SOMETHING LIKE THIS
This is the text that will appear on my
web page.
I said to write about a paragraph of text about
anything you like. I like Fish, dig this crazy fish.
So type what you like, Next we add style.
Wow!! This is an exercise of adding images to a web page.
*
You must have or get some images to place
images on your page. If you want to use the
same images we show in the example.
You can go to http://www.mcjeff.com/free.htm
We have tons of free images, backgrounds
and animations there.
IMAGES USED IN THIS CLASS
"Get them free at http://www.mcjeff.com/free.htm "
McJeff's HTML 101 CLASS #2