Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/04/2006, 17:27
Avatar de pmag
pmag
 
Fecha de Ingreso: agosto-2002
Ubicación: Murcia
Mensajes: 49
Antigüedad: 21 años, 7 meses
Puntos: 0
Mensaje Código

Éste es el código:

Código:
<!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">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Calendario con vínculos o anclas</title>

<style>
* {
	margin:0px;
	padding:0px;
}

body {
	font:1.0em Arial, Helvetica, sans-serif;
	background:#fff;
	margin:50px;
}

h1 {
	font-size:200%;
	color:#990000;
	border-top:2px solid #990000;
	margin:10px 0px 5px 0px;
}

table {
	margin:20px auto;
	border-collapse:separate;
}

caption {
	margin:0px auto 10px auto;
	font-size:0.7em;
	border-bottom:1px solid #999;
	padding:0px 0px 5px 0px;
}

td {
	border:1px solid #dddab5;
	color:#663300;
	background-color:#f5f3de;
	text-align:right;
	padding:5px 10px;
}

.vacio {
	border:none;
	background-color:#fff;
	color:#fff;
}

.festivo {
	border:1px solid #FBD9D9;
	color:#CC0066;
	background-color:#FDF2F2;
	font-weight:bold;
}

td a {
	text-decoration:none;
	padding:5px 10px;
	display:block;
}

td a:hover {
	color:#009900;
	background-color:#CCFFCC;
}

.enlace {
	padding:0px;
}

</style>
</head>

<body>

<h1>Esto sólo es un ejemplo</h1>

	<table id="calendario">
	<caption>Abril de 2006</caption>
	<tr>
		<th title="Lunes">L</th>
		<th title="Martes">M</th>
		<th title="Miércoles">X</th>
		<th title="Jueves">J</th>
		<th title="Viernes">V</th>
		<th title="Sábado">S</th>
		<th title="Domingo">D</th>
	</tr>
	<tr>
		<td class="vacio">-</td>
		<td class="vacio">-</td>
		<td class="vacio">-</td>
		<td class="vacio">-</td>
		<td class="vacio">-</td>
		<td class="festivo">1</td>
		<td class="festivo">2</td>
	</tr>
	<tr>
		<td>3</td>
		<td>4</td>
		<td>5</td>
		<td>6</td>
		<td>7</td>
		<td class="festivo">8</td>
		<td class="festivo">9</td>
	</tr>
	<tr>
		<td class="enlace"><a href="ADSL.html">10</a></td>
		<td>11</td>
		<td>12</td>
		<td class="festivo">13</td>
		<td class="festivo">14</td>
		<td class="festivo">15</td>
		<td class="festivo">16</td>
	</tr>
	<tr>
		<td>17</td>
		<td class="festivo">18</td>
		<td>19</td>
		<td>20</td>
		<td>21</td>
		<td class="festivo">22</td>
		<td class="festivo">23</td>
	</tr>
	<tr>
		<td>24</td>
		<td>25</td>
		<td>26</td>
		<td>27</td>
		<td>28</td>
		<td class="festivo">29</td>
		<td class="festivo">30</td>
	</tr>
	</table>

<br />

<div align="left"><a href="index.html"><img src="ret.gif" alt="Volver a Principal" border="0" height="26" width="28" /></a></div>

</body>

</html>
Intentad enlazad con algo.

Gracias.