Skip to content

Instantly share code, notes, and snippets.

@DevLatBo
Created February 21, 2015 00:02
Show Gist options
  • Save DevLatBo/0666c8cf5444135d54a4 to your computer and use it in GitHub Desktop.
Save DevLatBo/0666c8cf5444135d54a4 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/webag
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body{
background-color: #34ff77
}
</style>
</head>
<body>
<table border=1>
<tr>
<td><b>Celda 1</b></td>
<td>Celda 2</td>
</tr>
<tr>
<td colspan=2>Uniendo dos celdas</td>
</tr>
<tr>
<td><b>Celda 5</b></td>
<td>Celda 6</td>
</tr>
</table>
<address>MI texto en cursiva</address>
<script id="jsbin-javascript">
alert("estamos de color rojo :v");
</script>
<script id="jsbin-source-css" type="text/css">body{
background-color: #34ff77
}</script>
<script id="jsbin-source-javascript" type="text/javascript">alert("estamos de color rojo :v");</script></body>
</html>
body{
background-color: #34ff77
}
alert("estamos de color rojo :v");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment