How to Add "Read More" Jump Breaks in HTML
- 1). Open an editable version of the HTML code or page in which you want to insert a "read more" link. Consult your webmaster if you are not sure how to edit your website's HTML source code.
- 2). Type the following code in the place you want your reader to go after they click the "read more" link:
<a name="afterthejump"> </a>
Replace "afterthejump" with any keyword you want. Keep the quotation marks intact and do not use spaces or special characters. This keyword is only visible in the HTML code itself, not on the Web page. - 3). Type the following code in the place you want the "read more" link to appear:
<a href="#afterthejump">read more</a> - 4). Save or publish your HTML page.
Source...