Pictures
Insert of Pictures
Of course, Webpages without pictures tend to be boring. Thgerefor now THE tag, that is needed, to insert images, the <IMG>-TAG.
The IMG-Tag as welol needs no end tag, as it itself contains all neccessary values and parameters.
<IMG SRC=NameOfImage OtherParameters=value>
Image names can be filenames, as long as they refer to suffixes
.gif and
.jpg (or .jpeg) .
Other parameters can be WIDTH=... for maximum width of the image in pixels and HEIGHT=... for maximum height in pixels
as well as ALT="TEXT attached to Picture", to attach a text to a picture, that is visible, when passing the image with the cursor.
BORDER=.. creates a frame around the image, thickness of the border in pixels, as mentioned.
Sample, using the IMG tag to insert a picture
<HTML>
<HEAD>
<TITLE>Images</TITLE>
</HEAD>
<BODY>
<H1>Images</H1>
here a picture is expected
<BR>pass the image with the cursor !
<IMG SRC=meinbild.jpg ALT="This picture shows me , phoning.">
<CENTER>
The next picture is, like the text, centered
<BR>
<IMG SRC=meinminibild.gif ALT="This picture has the function of an icon">
</CENTER>
</BODY>
</HTML>
It views like that
try it