Skip to content

Instantly share code, notes, and snippets.

View tonylattke's full-sized avatar

Tony Lattke tonylattke

View GitHub Profile
@tonylattke
tonylattke / 1-hola-mundo.html
Created November 12, 2014 16:08
Una primera página web
<!doctype html>
<html>
<body>
<h1>Hola mundo</h1>
</body>
</html>
@tonylattke
tonylattke / 2-etiqueta-p.html
Created November 12, 2014 16:13
Etiqueta de párrafo
<!doctype html>
<html>
<body>
<h1>Hola mundo</h1>
<p>Texto de prueba</p>
</body>
</html>
@tonylattke
tonylattke / 3-etiqueta-head.html
Created November 12, 2014 16:14
Etiqueta Head y Title
<!doctype html>
<html>
<head>
<title>Tutorial: Tag Head</title>
</head>
<body>
<h1>Hola mundo</h1>
<p>Texto de prueba</p>
</body>
</html>
@tonylattke
tonylattke / 4-etiqueta-meta.html
Created November 12, 2014 16:16
Etiqueta Meta y atributos
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Tutorial: Tag meta</title>
</head>
<body>
<p>Texto de prueba. Acentos: á é í ó ú</p>
</body>
</html>
@tonylattke
tonylattke / 5-lenguaje-comentarios.html
Created November 12, 2014 16:17
Configurando lenguaje y comentarios
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Indica el lenguaje en HTML</title>
</head>
<body>
<h1>Hola mundo</h1>
<p>Texto de prueba. Acentos: á é í ó ú</p>
<!-- Comentario -->
@tonylattke
tonylattke / 6-etiqueta-h1-h6.html
Created November 12, 2014 16:21
Etiqueta h1-h6
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Tag h1-h6</title>
</head>
<body>
<h1>Título tamaño h1</h1>
<h2>Título tamaño h2</h2>
<h3>Título tamaño h3</h3>
@tonylattke
tonylattke / 7-etiqueta-a.html
Created November 12, 2014 16:23
Etiqueta a
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Tag a</title>
</head>
<body>
<a href="http://tony.lattke.org">Página de Tony Lattke</a>
</body>
</html>
@tonylattke
tonylattke / 8-etiqueta-img.html
Created November 12, 2014 16:24
Etiqueta img
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Tag img</title>
</head>
<body>
<img src="http://tony.lattke.org/img/Logo-blog-2.png">
</body>
</html>
@tonylattke
tonylattke / 9-etiqueta-ul-li.html
Created November 12, 2014 16:26
Etiqueta ul y li
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Tag li</title>
</head>
<body>
<ul>
<li>Elemento 1</li>
<li>Elemento 2</li>
@tonylattke
tonylattke / 10-etiqueta-table.html
Created November 12, 2014 16:26
Etiqueta table
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Tutorial: Tag table</title>
</head>
<body>
<table>
<tr>
<th>Nombre</th>