Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ General Web Design _ Basic HTML help

Posted by: teddeeze Oct 22 2006, 03:50 PM

Hi, i have up and running a 'basic' piczo site, which was started cos my two girls could not get the stuff they wanted!

What i am looking for is!

i want to be able to create a text box (which i can do ) but create links to the paes within that text box,

if you can help then great, but please make it simple cos i am not that good and have just started with this HTML thing!

Cheers Teddeeze!

Posted by: White_Ox Oct 22 2006, 07:55 PM

place this code in the text area.

<p><a href="THE URL OF THE WEB PAGE YOU WANT">WHAT YOU WANT THE LINK TO SAY</a></p>

Posted by: pandy Oct 22 2006, 11:33 PM

QUOTE(teddeeze @ Oct 22 2006, 10:50 PM) *

i want to be able to create a text box (which i can do ) but create links to the paes within that text box,


What do you mean with "text box"? An IFRAME? In that case you have to give it a name using the 'name' attribute.
http://www.htmlhelp.com/reference/html40/special/iframe.html
Then, in the link, refer to the name you've given the IFRAME with help of the 'target' attribute.
http://www.htmlhelp.com/reference/html40/special/a.html

<a href="page.html" target="name_of_iframe">Page</a>

If you mean something else than a frame/iframe, you can't load other pages in it.

Posted by: tadoscoppernicus May 2 2008, 04:21 PM

I think this is what you needed. Just edit the spacing if you want depending on your design.

<form method="post" action="">
<textarea name="comments" cols="40" rows="5">
Enter your comments here...
</textarea><br>
<input type="submit" value="Submit" />
</form>

ninja.gif I hope this would help you.

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)