Created
January 27, 2012 21:52
-
-
Save favrik/1691123 to your computer and use it in GitHub Desktop.
SITIO BASICO 1era Parte: Como crear un simple sistema de plantillas para sitios web muy basicos.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 profile="http://www.w3.org/2005/10/profile"> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<link rel="icon" type="image/png" href="favicon.ico"> | |
<link rel="stylesheet" type="text/css" href="css/style.css" /> | |
<link rel="stylesheet" type="text/css" href="css/footer.css" /> | |
<!--[if lt IE 7]> | |
<link rel="stylesheet" type="text/css" href="css/ie7footer.css" /> | |
<![endif]--> | |
<title><?php echo $page_title ?> - badbit.org</title> | |
</head> | |
<div id="container"> | |
<div id="header"> | |
<h1 align="center">badbit.org</h1> | |
<p align="center">Sitio web personal.</p> | |
<p align="center"><img src="./img/tinfoilhatarea-sign.jpg" /></p> | |
</div> | |
<div id="body"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment