Arright, so I'm creating this long as reply in some forum, and I wanted to add some simple html code to a selected piece of text so it will automatically skip down to that part of my reply.
What should I be typing in?
Name:
Anonymous2011-07-25 17:17
bamp!
Name:
Anonymous2011-07-25 20:34
>posting on the text board
i hope this is some shitty attempt at trolling
Name:
Anonymous2011-07-26 4:55
Most forums don't allow you to use HTML for something like that.
Assuming they allow you, this is what you need to do:
<a href="#chapter1"> skip to chapter 1</a>
<a href="#chapter2"> skip to chapter 2</a>
<a id=chapter1>chapter 1</a>
blah blah bla
blah blah
blah
<a id=chapter2>chapter 2</a>
blah blah bla
blah blah
blah
First, create an anchor where you want to skip to using this:
<a id="Whatever you want to call it"</a>
Then, to link to it use
<a href="#Whateveryoucalledit">What you want to text to say</a>