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
|
<html>
<head>
<style>
.zoneCalendrier {
border: 2px solid #032D57;
height : 400px;
width : 300px;
margin :5px;
padding : 10px;
}
.calendrier {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 20x;
color: #032d57;
font-weight: normal;
background-color: #FFFFFF; }
.calendrier_heure{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #032d57;
font-weight: normal;
border-top: 2px solid #032D57;
border-left: 1px solid #032D57;
border-right: 1px solid #032D57;
background-color: #FFFFFF;
}
.calendrier_quartheure{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #032d57;
font-weight: normal;
border-top: 1px solid #032D57;
border-left: 1px solid #032D57;
border-right: 1px solid #032D57;
background-color: #FFFFFF;
}
.calendrier_bas{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #032d57;
font-weight: normal;
border-top: 1px solid #032D57;
border-left: 1px solid #032D57;
border-right: 1px solid #032D57;
border-bottom: 2px solid #032D57;
background-color: #FFFFFF;
}
</style>
</head>
<body>
<div id="zoneCalendrier" class="zoneCalendrier">
<table border=0 CELLPADDING=0 CELLSPACING=0 class='calendrier'>
<tr>
<td width="60px" rowspan=4 align='center' valign='top'>08:00</td>
<td width="200px" class='calendrier_heure'>1 </td>
</tr>
<tr>
<td class='calendrier_quartheure'>2 </td>
</tr>
<tr>
<td class='calendrier_quartheure'> </td>
</tr>
<tr>
<td class='calendrier_quartheure'> </td>
</tr>
<tr>
<td rowspan=4 align='center' valign='top'>09:00</td>
<td class='calendrier_heure'> </td>
</tr>
<tr>
<td class='calendrier_quartheure'> </td>
</tr>
<tr>
<td class='calendrier_quartheure'> </td>
</tr>
<tr>
<td class='calendrier_bas'> </td>
</tr>
</table>
</div>
</body>
</html> |
Partager