Bookmark links accesible from a different screen

i have a bookmark link on the navigation menu A which links to inside the page to Inside A 1 or Inside A 2 ,
but how can i have a link on the sub menus 1 and 2 , so that they can be accesible when the user is on a different page than “A”, i have eight menus

<li> <a href=“A.html”>- A</a>
<ul>

          &lt;li&gt; &lt;a href = "#1"&gt;      Inside A 1 &lt;/a&gt;&lt;/li&gt;
          &lt;li&gt; &lt;a href = "#2"&gt;       Inside A 2 &lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;

    &lt;/li&gt;

thanks

If you want to link to a particular point (call it ‘bookmark1’) on a particular page (say ‘pageA.htm’), you put <a href=“pageA.htm#bookmark1”>, and bingo.

Thanks

i was not defining the page name properly

thanks again
now i have focus on printing css right as all the menu items are being printed rather than how its displayed on the screen