Skip to content

Instantly share code, notes, and snippets.

@ramons03
Created February 11, 2012 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ramons03/1804701 to your computer and use it in GitHub Desktop.
Save ramons03/1804701 to your computer and use it in GitHub Desktop.
HTML Hola mundo
<!DOCTYPE html>
<html>
<head>
<title>Hola mundo desde el titulo</title>
</head>
<body>
<h1>Hola Mundo</h1>
<br />
<h1>HTML Hypertext Markup Language</h1>
<h2>Elementos</h2>
<ul>
<li>Etiquetas que abren y cierran &lt foo &gt &lt /foo &gt </li>
<li>Tienen atributos: &lt img src="imagen.jpg"&gt &lt /img &gt </li>
</ul>
<h2>Entidades</h2>
<ul>
<li>Esto es un ampersand &amp </li>
<li>Esto es un underbraket &lt </li>
<li>Esto es un otrobraket &gt </li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment