Código PHP:
Ver original
<!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=gb18030"> <title>Brillaseo - listado de Eventuales</title> <link href="estilos.css" rel="stylesheet" type="text/css" /> </head> <body> <?php include('conexion.php'); //recibimos variables $supervisor=$_POST['supervisor']; $mantenimiento=$_POST['mantenimiento']; $novedad=$_POST['novedad']; $fecha_inicio=$_POST['fecha_inicio']; $dias=$_POST['dias']; $turno=$_POST['turno']; $operario=$_POST['operario']; $fecha_solicitud=$_POST['fecha_solicitud']; //paso 1, calculamos la fecha de finalizaci贸n del reempplazo Sumando el numero de dias que dura el evento a la fecha inicial. //Obtenemos la Fecha de Finalizaci贸n //Paso 2, Traemos la lista de los Eventuales $cons0="SELECT * FROM Eventuales"; echo "<table width='50%' align='center'><td><img src='logo_jpg.png' width='150' height='150' /></td> <td><h1>Eventuales Disponibles</h1></table>"; echo "<table width='50%' align='center'> <tr class='titab'><td>Nombre</td><td>Estado</td>"; $idev = $lis['Id_eventual']; $nomev = $lis['Nombre']; $ceve="SELECT * FROM Evento WHERE Fecha_fin <= '$fecha_inicio' AND id_eventual = '$idev'"; if($cuenta == '0') { echo "<tr><td>".$nomev."</td>"; echo "<td>Asignar</td></tr>"; }else { echo "<tr><td>".$nomev."</td>"; echo "<td>No esta Disponible</td></tr>"; } } ?> </body> </html>
y esta hoja de estilos
Código CSS:
Ver original
@charset "utf-8"; .tabla_verde { font-family: Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold; background-color: #CCE0CC; } .tabla_blanco { font-family: Verdana, Geneva, sans-serif; font-size: 14px; font-weight: bold; color: #000; background-color: #FFF; } .input { font-family:Verdana, Geneva, sans-serif; font-size:14px; width:230px; border-radius: 5px; border-color:#063; } .dias { font-family:Verdana, Geneva, sans-serif; font-size:14px; width:50px; border-radius: 5px; border-color:#063; } h1 { font-family:Verdana, Geneva, sans-serif; font-size:3em; font-weight:bold; color:#06F; } .titab { bgcolor:#0066FF; color:#fff; font:Verdana, Geneva, sans-serif; font-size:1em; text-align:center; }
Pero resulta que no me está tomando los estilos.