any one help me out with some html

  • Thread starter Thread starter headtheball
  • Start date Start date
H

headtheball

I am trying to create a text area within a document using html, I have an
image and beside it I want to write a description but I need to know how to
create an area that I can type into. I have tried inserting a table but when
I type into it, the text just carries on in a line and pushes the margins of
the document. I want to create a "type text here" can anybody help?
 
Maybe like this:

</head>

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<form name="form1">
<p><input type="text" name="formtext1"></p>
</form>
<p>&nbsp;</p>
</body>

</html>

Or this:

</head>

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<form name="form2">
<p><textarea name="formtextarea1" rows="3"></textarea></p>
</form>
<p>&nbsp;</p>
----- Original Message -----
From: headtheball
Newsgroups: microsoft.public.windowsxp.help_and_support
Sent: Sunday, February 22, 2004 1:37 PM
Subject: any one help me out with some html


I am trying to create a text area within a document using html, I have an
image and beside it I want to write a description but I need to know how to
create an area that I can type into. I have tried inserting a table but when
I type into it, the text just carries on in a line and pushes the margins of
the document. I want to create a "type text here" can anybody help?
 
Thanks guys I sorted it, I have been using net objects fusion but I didn't
understand how forms worked. I added a form to the area that I wanted, and
copied the html to the template that I was creating, works fine
 
Back
Top