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 65 66 67 68 69 70 71 72 73 74
|
<html>
<head>
<title></title>
<style type="text/css">
<!--
#menu {
font-family: Helvetica;
font-size: 14px;
position: relative;
top: 10px;
}
td {
text-align: center;
margin: 0px;
padding: 0px 35px;
}
#table a:link {
text-decoration: none;
color: #333333;
}
#table a:visited{
color: #333333;
text-decoration: none;
}
#table a:hover{
color: #999999;
text-decoration: none;
}
img{
cursor: pointer;
}
//-->
</style>
<script type="text/javascript">
<!--
function LienOver(idLien)
{
var lien = document.getElementById(idLien);
lien.style.color = "#999999";
}
function LienOut(idLien)
{
var lien = document.getElementById(idLien);
lien.style.color = "";
}
//-->
</script>
</head>
<body>
<div id="menu">
<table border="0" cellpadding="0" cellspacing="0" id="table">
<tr valign="top">
<td><a id="ici" href="index.php" >home</a> </td>
<td><a id="fashion" href="fashion.php">fashion</a></td>
<td><a href="beauty.php">beauty</a> </td>
<td><a href="portrait.php">portrait</a> </td>
<td><a href="personal.php">personal work</a> </td>
<td><a href="contact.php">contact</a> </td>
</tr>
</table>
<br><br><br><br>
<img src="image1.jpg" onmouseover="LienOver('ici')" onmouseout="LienOut('ici')">
<img src="image2.jpg" onmouseover="LienOver('fashion')" onmouseout="LienOut('fashion')">
</body>
</html> |
Partager