Created
February 21, 2015 00:02
-
-
Save DevLatBo/0666c8cf5444135d54a4 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/webag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
background-color: #34ff77 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert("estamos de color rojo :v"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment