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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
.td_class
{
float: left;
position: relative;
background:#F7F7F7;
width:365px;
height:150px;
margin-top: 20px;
margin-left: 22px;
}
.lien_home
{
text-decoration: none ;
color : #000000 ;
}
.lien_hoveur:hover
{
width:365px;
height:150px;
background: url(./images/test.png) no-repeat 0 0;
z-index: 7 ;
}
.relatif_home
{
position: relative;
float: left;
background: #F7F7F7;
width: 95px;
height: 95px;
margin-top: 12px;
margin-right: 5px;
}
.coin_home
{
position: absolute;
z-index: 5;
left: 0px;
top: 0px;
border-style: none;
text-decoration: none;
}
.text_arti
{
font: 70% verdana, arial, sans-serif;
margin-top: 12px;
margin-left: 5px;
float: left;
line-height: 1.5;
}
.read_more_1
{
font: 60% verdana, arial, sans-serif;
position:absolute;
bottom: 10px;
right: 5px;
}
</style>
</head>
<body>
<table>
<tr>
<td class="td_class">
<a href='<?php translate("index.php?choix=1");?>' class="lien_home">
<div class="lien_hoveur">
<div class="titr_arti">
Titr
</div>
<div class="relatif_home">
<img class="imag_arti" src="./images/engi_desi_home.png" />
<img class="coin_home" src="./images/coins_95x95.png" />
</div>
<div class="text_arti">
Text
</div>
<div class="read_more_1">
Read
</div>
</div>
</a>
</td>
</tr>
</table>
</body>
</html> |
Partager