HTML help plz!

Zeus2005

New Member
Hey!

I am trying to load a text file into a web page, so say the text file contained the words, "dog,cat,mouse", I could load them into a html page and display them. I have tried searching the net but had no success :(

Thanks for your help!
 
There are numerous HTML tutorials out there, but I can help you with simple text.

It should (maybe) look something like this:

<HTML>
<BODY>
<p>dog,cat,mouse</p>
</body>
</html>

Also, to tell your computer that it's an HTML file, when saving it, you will need to add ".html" to the end of the name. For example, if you were going to name it "test" name it "test.html"

If you need more help, try going here http://www.davesite.com/webstation/html/. If you don't like that site, do a google search for "HTML Tutorial."
 
lol na, i mean read in from a names.txt in the directory and display the names.txt contents on screen.

edit: kinda like an image file, its sored in directory and an html command displays the image on the page.
 
Back
Top