Ver Mensaje Individual
  #7 (permalink)  
Antiguo 20/08/2010, 06:35
martin_010
 
Fecha de Ingreso: agosto-2010
Mensajes: 6
Antigüedad: 13 años, 8 meses
Puntos: 0
Respuesta: Php y Hojas de Estilo CSS

esto es el codigo del index.php

<!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>Documento sin título</title>

</head>

<body>
<?
require_once("encabezado.html");
require_once("cuerpo.html");
require_once("pie.htm");
?>
</body>
</html>


y este es el codigo del encabezado.html:

<!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>Documento sin título</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<div id="main_container">
<div id="header">
<div id="logo"><a href="home.html"><img src="images/logo.gif" alt="" title="" border="0" /></a></div>

<div id="menu">
<ul>
<li><a class="current" href="home.html" title="">Inicio</a></li>
<li><a href="services.html" title="">Servicios</a></li>
<li><a href="publicite.html" title="">Publicite</a></li>
<li><a href="sobrenos.html" title="">Nosotros</a></li>
<li><a href="contact.html" title="">Contacto</a></li>
</ul>
</div>

</div>
</body>
</html>