<HTML> <HEAD> <TITLE>Inline Images</TITLE> </HEAD> <BODY> <H1>Examples of Inline Images</H1>
Reference to a local image: <P></P> <IMG ALT="home" SRC="../images/home_on.gif"> <P></P> Reference to an image on a different server:
<P></P> <IMG SRC="http://www.cba.bgsu.edu/images/amis.gif"> <P></P> Altering the dimensions of an image: <P></P>
<IMG SRC="../images/home_on.gif" WIDTH="50" HEIGHT="24"> <P></P> <IMG SRC="../images/home_on.gif" WIDTH="103" HEIGHT="12">
<P></P> Alignment of text around the image <P></P> <IMG align=left SRC="../images/home_on.gif" WIDTH="103" HEIGHT="120">
This is some text that is placed around the image depending on the align option. <BR clear=left> <P></P> <IMG align=right SRC="../images/home_on.gif"
WIDTH="103" HEIGHT="120"> This is some text that is placed around the image depending on the align option. <BR clear=left> <P></P> <IMG align=bottom
SRC="../images/home_on.gif" WIDTH="103" HEIGHT="120"> This is some text that is placed around the image depending on the align option. <BR clear=left> </BODY>
</HTML> |