can anybody giv a RIGHT answer to this SIMPLE HTML question?

  • Thread starter Thread starter lizbath j
  • Start date Start date
L

lizbath j

Guest
I ASKED THIS QUESTION TWICE BUT EVERYONE GOT IT WRONG!!
In the following example, how do i put the "Address" part OUTSIDE the text area on the top left instead of inside it(as it is in this example).

<html>
<body>
<textarea name="address" rows="5" cols="20">Address:</textarea>
<br>
</body>
</html>

AND NO, ITS NOT THE CODE BELOW EITHER!!
<html>
<body>
Address:<textarea name="address" rows="5" cols="20"></textarea>
<br>
</body>
</html>

IT SHOULD LOOK LIKE THIS!!

ADRESS: <Text area STARTS right here>
 
This will work:
<html>
<BODY>
<html>
<body>
<table><td valign="top">Address:</td><td><textarea name="address" rows="5" cols="20"></textarea></td></tr></table>
<br>
</body>
</html>
 
Back
Top