Further, if you prepare a Mathematics document in Word and save it as HTML, Word will create a folder to contain graphics representing any well-formed math expression from Equation Editor (or MathType) and all graphs from any source. If you named the file   MathLesson.htm  then Word will create a folder called MathLesson_files. A fairly simple Math Lesson could contain 40 - 70 such graphics, all huddled in that one folder.

When you have the graphics file in one of these formats, you get the browser to place the image somewhere by using the <img src=" ... "> technique. You put the filename inside of the quotes - and the file can be anywhere in the world. If the file is not at the same web site, you must insert the complete name of the file. Here are some examples:

<img src="myhouse.gif">

This will cause the image named myhouse.gif to inserted on the page where the code appears.

<img src="http://www.rodsweb.org/george/myhouse.gif">

This will cause the image named myhouse.gif to inserted on the page where the code appears. This file will be found on a computer whose domain name is www.rodsweb.org in a folder named george.

Your page will load faster if you add a couple of things to the <img> tag - the height and width of the image. To figure out what that is, you can load the image into a Paint program, then tell the program that you want to resize or resample it. Study the resulting screen. It may in fact tell you the height and width. However, make sure that you read the number of pixels (not inches) in the height and width. The tag

<img src="myhouse.gif" height="100" width="300">

tells the browser to display the image using 100 pixels in height and 300 pixels in width. Since no path is specified for the image, the browser will "look for it" in the same folder as the html file.