Created
May 13, 2015 02:09
-
-
Save daniellimws/a1333118e20094d74bd4 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/yovohe
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> | |
</head> | |
<body> | |
<h1> | |
<a href = "http://jsbin.com/yovohe/1/edit?html,output">Hello World</a> | |
</h1> | |
<ul> | |
<li><b>Bold</b></li> | |
<li><i>Italics</i></li> | |
</ul> | |
<hr> | |
Enter your name<br> | |
<input type = "text"> | |
<input type ="submit"> | |
<br> | |
<hr> | |
<table> | |
<tr> | |
<td><b>Name</b></td> | |
<td><b>Age</b></td> | |
</tr> | |
<tr> | |
<td>Daniel Lim</td> | |
<td>14</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment