Created
January 20, 2013 23:00
-
-
Save Kolesias123/4582420 to your computer and use it in GitHub Desktop.
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> | |
<html lang="es"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Aprendiendo HTML 5!</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="lang" content="es" /> | |
<meta name="description" content="Con este sitio web aprenderas mucho" /> | |
<meta name="author" content="http://www.infosmart.mx/humans.txt" /> | |
<link rel="author" content="http://www.infosmart.mx/humans.txt" /> | |
<link rel="canonical" href="http://www.infosmart.mx/home" /> | |
<link href="./style.css" rel="stylesheet" /> | |
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script> | |
<script src="./script.js"></script> | |
</head> | |
<body> | |
<div class="page" id="page"> | |
<header> | |
<figure> | |
<img src="http://resources.infosmart.mx/infosmart/images/logo.png" /> | |
</figure> | |
<nav> | |
<a href="./index.html">Inicio</a> | |
<a href="./about.html">Acerca de nosotros</a> | |
<a href="http://facebook.com/infosmart.science">Nuestro Facebook</a> | |
</nav> | |
</header> | |
<div class="content"> | |
<section> | |
<article> | |
<h3>Las manzanas revolucionan el mundo de la web</h3> | |
<p> | |
Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum | |
</p> | |
<aside> | |
<p> | |
Apple gana $10,000 USD al demandar a Google | |
</p> | |
</aside> | |
</article> | |
</section> | |
<section> | |
<p> | |
Nuestro sitio estará en: | |
</p> | |
<progress max="200" min="0"></progress> | |
<meter max="200" min="0" value="0" low="50" high="150" id="trafico"></meter> | |
<div class="player"> | |
<audio autoplay controls loop preload> | |
<source src="./audio.mp3" /> | |
<source src="./audio.ogg" /> | |
</audio> | |
<video src=""> | |
<source src="" /> | |
</video> | |
</div> | |
</section> | |
<section> | |
<form action="" method="POST"> | |
<p> | |
<label>Escribe un numero</label> | |
<input type="number" min="0" max="10" name="n" /> | |
</p> | |
<p> | |
<label>¿Como esta tu estado sentimental?</label> | |
<input type="range" name="sentimental" /> | |
</p> | |
</form> | |
</section> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment