Skip to content

Instantly share code, notes, and snippets.

@waltersud
Created February 3, 2013 16:50
Show Gist options
  • Save waltersud/4702514 to your computer and use it in GitHub Desktop.
Save waltersud/4702514 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
ol {
}
li{
list-style-type: square;
list-style: none;
background-image: url(rombo.gif);
background-position: left bottom;
background-repeat: no-repeat;
padding-left: 15px
}
<!-- content to be placed inside <body>…</body> -->
<html>
<head></head>
<body>
<h1>Mi primera página web(h1)</h1>
<h2>Mi primera página web(h2)</h2>
<h3>Mi primera página web(h3)</h3>
<h4>Mi primera página web(h4)</h4>
<p> Mi nombre es Walter (Parrafo) </p>
<a href="http://www.walterarevalo.co"> Mi pagina web es : </a></br>
<img src="http://luisfelix.pe/html.jpg" width="200"/>
<hr border="5px" />
<ul>
<li>Primer Elemento </li>
<li>Segundo Elemento </li>
<li>Tercer Elemento </li>
</ul>
<ol>
<li>Primer Elemento </li>
<li>Segundo Elemento </li>
<li>Tercer Elemento </li>
</ol>
<span> Rojo </span><span> Verde </verde>
<table border="1">
<tr>
<td>fila 1, Celda 1 </td>
<td>fila 2, Celda 2 </td>
</tr>
<tr>
<td>fila 1, Celda 1 </td>
<td>fila 2, Celda 2 </td>
</tr>
</table>
<hr/>
<br/>
<form >
Nombres: <input type="text" name="nombre"></br>
Apéllido : <input type="text" name="apellidos"></br>
Password : <input type="password" name="password"></br>
<input type="radio" name="m">Masculino</br>
<input type="radio" name="f">Femenino</br>
<select>
<option value="1">Peru</option>
<option value="1">Brasil</option>
<option value="1">Colmbia</option>
</select>
<iframe src="http://elcomercio.pe"></iframe>
</form>
</body>
</html>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment