asked on
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
:
:
<style>
table.reportDrop {border-collapse: collapse;}
table.reportDrop td {
color: rgb(0,0,180);
font-weight: bold;
font-size: 10pt;
background-image: url(images/blueButton.jpg);
border: 1px solid rgb(0,84,159);
}
</style>
:
:
<DIV style="position:relative">
<button type=button onmouseover="document.getElementById('reportSEL').style.visibility='visible'"
onmouseout="document.getElementById('reportSEL').style.visibility='hidden'">Reports</button>
<div id=reportSEL style="position:absolute; top: 20px; left: 260px; visibility: hidden"
onmouseover="this.style.visibility='visible'" onmouseout="this.style.visibility='hidden'">
<table class=reportDrop style="width: 110px">
<tr>
<td onmouseover="this.style.fontSize='larger'"
onmouseout="this.style.fontSize='10pt'"
onclick="location='prospectList.jsp'">
Prospect List
</td>
</tr>
<tr>
<td onmouseover="this.style.fontSize='larger'"
onmouseout="this.style.fontSize='10pt'">
report 2
</td>
</tr>
</table>
</div>
</DIV>
HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.
TRUSTED BY
ASKER