I have following popup html structure in aspx page(asp.net) which i made hide and show on a link click using jquery but this is not SEO friendly.How can i make it SEO friendly without using meta tags?
<div class="popupbackground" id="divDescription" style="display: block;">
<div style="display: block;" class="width" id="divDescriptionPopup">
<div style="margin-top: -200px;" class="popup">
<div class="close float-right">
<a style="float: right;
display: inline" onclick="return CloseDescription_Close();" href="" id="CloseDescription">
<img title="Close" alt="Close" src="../Images/close.png">
</a>
</div>
<h3 class="float-left heading">
Description</h3>
<div class="clear">
</div>
<div class="popup_inner_description">
<div class="pop_scroll">
<span id="ContentPlaceHolder1_lblLongDescription"><font size="3"><span style="font-weight: bold;">content here.... <span style="font-weight: bold;">SavingON.co.uk</span> content here....<br><br> content here....<br><br>content here <br><br>content here...</span></font></span>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
</div>
style="font-size:120%;"rather than the deprecated FONT tag? – CJM Aug 2 '12 at 14:55