How can I make HTML available for others to copy?

Pepper

New member
I have made a banner for a band and they want the HTML to be available for fans to copy and paste it on their page like this band has for their banners. www.myspace.com/atsunriseuk . I was wondering How I can do that without making the banner itself appear. Please let me know ASAP. Thank you
 
you need to create a text box on whatever site Myspace for instance. In Myspace create a comment of this code

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

In the section where it says textarea name="comments" change the word comments to whatever you want to call your banner.

Where it says "Enter your banner HTML code here..." Enter your entire HTML Code.

when someone clicks on the text box it will highlight the TEXT inside it, which is the code you put in it. They can then paste that where ever they want your banner to appear on their page.
 
Back
Top