HTML Intro


[ Follow Ups ] [ Death Valley Talk - Archive Set 3 ] [ FAQ ]

Posted by Art Berggreen on October 23, 2002 at 11:52:59:

In Reply to: Re: Multiple Images on Posts - How? posted by Mark Holloway (Tumbleweed) on October 23, 2002 at 05:45:57:

HTML is just a sequence of instructions to your broswer to describe how
to format what is displayed, to identify what are clickable links, etc.

The "Followup" section at the botton of each post is an HTML "form"
containing several fields which are filled out and sent back to a
PERL script when the "Submit Follow Up" button is clicked. The PERL
script takes the contents of the filled out form fields and inserts
them into a template of the basic posting page and then sends that
page to be displayed on your browser. The new page is also added to
the file of existing pages so that it can be viewed by others. The
contents of the "Comments" form field are used to provide the body
of each post. What is important here is that the template provides

<br><html><br>...<br><body><br>...<br>contents of comments field<br>...<br></body><br>...<br></html><p>Note that the Comments test is just inserted into the middle of the<br>HTML code where it would normally be displayed as text. But the browser<br>also scans this looking for HTML "instructions". If proper HTML instructions<br>are included, the browser will act upon them.<p>The basic "instruction" to include an image in an HTML page is the tag:<br><IMG SRC="URL_of_image" BORDER="0">. The image has to exist as an<br>accessible image on some web server. Since it is not likely to be<br>on the Death Valley Talk server, you need to have it hosted somewhere<br>else and provide a complete URL to point to the image. You can provide<br>as many <IMG> tags and other valid HTML as you want. They DO need to be<br>properly formed and formatted. Just remember to keep the image size and<br>image file size relatively small.<br>

Hope this helps someone,


Art


Follow Ups:




[ Follow Ups ] [ Death Valley Talk - Archive Set 3 ] [ FAQ ]