Skip to content

Instantly share code, notes, and snippets.

@emamut
Created January 4, 2018 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emamut/5ee0b13e12fdf4e85f012628490b4ac7 to your computer and use it in GitHub Desktop.
Save emamut/5ee0b13e12fdf4e85f012628490b4ac7 to your computer and use it in GitHub Desktop.
Curso Basico HTML
<html>
<head>
<title>Mi primera pagina HTML</title>
<style>
td {
border: 1px solid;
background: red;
width: 70px
}
h1 {
color: #cccccc;
font-size: 35px;
}
</style>
</head>
<body>
<h1>Hola soy un titulo</h1>
<table>
<tr>
<td>Celda1</td>
<td>Celda2</td>
</tr>
<tr>
<td>Celda3</td>
<td>Celda4</td>
</tr>
<tr>
<td>Celda5</td>
<td>Celda6</td>
</tr>
</table>
<h1>Yo tambien soy un titulo</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment