The way I understand it you use 'blah'. Like:
Code:
......
#blah {
top: 120px;
left: 200px;
}
</style>
</head>
<body>
<div id="container">
<a id="blah" href="..."><img alt="text equivalent of image" src="..."></a>
</div>
the next image's anchor tag could have any id, say 'bleh'.
Code:
......
#blah {
top: 120px;
left: 200px;
}
#bleh {
top: 170px;
left: 260px;
}
</style>
</head>
<body>
<div id="container">
<a id="blah" href="..."><img alt="text equivalent of image" src="..."></a>
<a id="bleh" href="..."><img alt="text equivalent of image" src="..."></a>
</div>
and so on.
Bookmarks