Skip to content

Instantly share code, notes, and snippets.

@marcosrivasr
Created March 19, 2011 17:04
Show Gist options
  • Save marcosrivasr/877620 to your computer and use it in GitHub Desktop.
Save marcosrivasr/877620 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Mi página</title>
</head>
<body>
<img src="http://lh6.ggpht.com/_J3J9Wwie1TY/TYDP-SWQPVI/AAAAAAAAITw/xb6woN34-8Y/ie9%5B4%5D.jpg" width="500" height="350" />
</body>
</html>
<html>
<head>
<title>Mi página</title>
</head>
<body>
<a href="http://www.vidamrr.com">Ir a Vida MRR</a>
<a href="#ancla" >Ir al texto</a>
<a name="ancla">Este es un ejemplo de ancla, la cual sirve para llevarte a un lugar específico de una página web a través del símbolo #</a>
</body>
</html>
<html>
<head>
<title>Mi página</title>
</head>
<body>
<table border="2">
<tr>
<td>fila1 col 1</td><td>fila1 col 2</td><td>fila1 col 3</td>
</tr>
<tr>
<td>fila2 col 1</td><td>fila2 col 2</td><td>fila2 col 3</td>
</tr>
<tr>
<td>fila3 col 1</td><td>fila3 col 2</td><td>fila3 col 3</td>
</tr>
<tr>
<td>fila4 col 1</td><td>fila4 col 2</td><td>fila4 col 3</td>
</tr>
<tr>
<td>fila5 col 1</td><td>fila5 col 2</td><td>fila5 col 3</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>Mi página</title>
</head>
<body>
<form action="procesar.html">
<input type="text" value="nombre" /> Nombre
<input type="password" value="nombre" /> Contraseña<br />
<input type="button" value="Enviar " />
</form>
</body>
</html>
<html>
<head>
<title>Mi página</title>
</head>
<body>
<div>Este es un ejemplo de capa</div>
<span>Este es un ejemplo de span</span>
<p>Este es un salto de parrafo</p>
<br />Este es un salto de linea sencillo
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment