How to add text to a certain area in HTML...?

I want to put text in a specific location (the image I want the text is called text_area, if that is needed). Is there a way to only put text on there rather than it just applying to the top corner of the page.

I've tried tuts for this, but most of them just tell me what to do when making from scratch, not with a designed site behind it...

So how to put text into only a certain position for my web page using HTML/Java/etc.
Ahh indeed dsavi. Sorry, I've been reading a lot of programing tutorials, so I got a bit confused...

Thanks for the help. (Y)
The tips you've gave me, unfortunately; did not work. Could you make them any clearer?

I've tried replacing the "img src" code with the code gave, I've also tried just pasting the code anywhere in the body area - but both did not work...
 
Sorry- First I have to point this out- you use JavaScript, not Java, for web design. Java is entirely different and nearly doesn't resemble JavaScript at all.
Umm, I suppose you mean the text area you want to put the text in is called text_area? If so, change the HTML for your text area to:
<textarea value="Your text here" name="text_area">

This will create a text area with the text "Your text here" already typed into the text area. Obviously you can change that to whatever you want.
 
Back
Top