I am creating an experimental website. The page visitors view has four embedded elements. I would like the user to be able to click on one embed to advance to the next one further down the page. Here is what I tried:
<a href="#2"><embed src="index.html" height="1000px" width="1300px"></a>
<div id="2"><embed src="2.html" height="1000px" width="1300px"></div>
And
<a href="#2"><embed src="index.html" height="1000px" width="1300px"></a>
<embed src="2.html" id="2" height="1000px" width="1300px">
In both cases the link doesn't work. The embed tag can't be clicked on.