1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>DHTML Scripts- DD Tab Menu Demos</title>
<script type="text/javascript" src="ddtabmenufiles/ddtabmenu.js">
</script>
<!-- CSS for Tab Menu #3 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/solidblocksmenu.css" />
<script type="text/javascript">
//SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
ddtabmenu.definemenu("ddtabs3", 1) //initialize Tab Menu #3 with 2nd tab selected
</script>
<body>
<h2>3) Example 3</h2>
<table width="880" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div id="ddtabs3" class="solidblockmenu">
<ul>
<li><a href="http://www.test.com" rel="sb1">Home</a></li>
<li><a href="http://www.test.com" rel="sb2">DHTML</a></li>
<li><a href="http://www.test.com" rel="sb3">CSS</a></li>
<li><a href="http://www.test.com">Forums</a></li>
<li><a href="http://www.test.com">Gif Optimizer</a></li>
</ul>
</div>
<DIV class="tabcontainer ieclass">
<div id="sb1" class="tabcontent">
Return to the <a href="http://www.test.com">frontpage</a> of.
</div>
<div id="sb2" class="tabcontent">
See the new scripts <a href="http://www.test.com">Click here</a>.
</div>
<div id="sb3" class="tabcontent">
Original, practical <a href="http://www.test.com">CSS codes and examples</a> such as CSS menus for your site.
</div>
</DIV></td>
</tr>
</table>
</body>
</html> |
Partager