Creating table of contents in blog, etc.

I’m writing a guide to something, and at the top of the document there will be a table of contents. I’ll be posting this guide on my Blogger blog, and I also intend to put it in a Facebook note (to maximize its visibility). Ideally, I’ll be able to make the table of contents in link form, meaning that one can click on an entry in the table (say, section 1) and the page will jump down to the corresponding section without opening a new tab or window.

I’m fairly proficient with computers, but I’m by no means an HTML wizard. Is this an overly complicated task? If it’s not, can someone briefly explain to me how it’s done? I’ve read about “HTML anchors,” which I think might be the key to discovering what I need to do, but I haven’t found a Web page in which HTML anchors are explained in layman’s terms.

Thanks!

You need an anchor an ad link to it. The anchor marks the spot on the page that you want to jump to (ie, the start of a chapter). The link goes from the table of contents to that anchor. Like so…
Table of Contents
<a href="#Chapter1">Chapter 1: The Beginning</a>
<a name=“Chapter1”>
CHAPTER ONE
Call me Ishmael

Great; thank you so much!

Actually you want…

<a name=“Chapter1”></a>
CHAPTER ONE

Close that tag, otherwise Chapter One will be one big link.