Created
January 28, 2013 10:44
-
-
Save sprintr/4654552 to your computer and use it in GitHub Desktop.
Basic HTML Tags
This file contains 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
<html> | |
<head> | |
<title>My First Page</title> | |
</head> | |
<body> | |
<ol type="i" start=3> | |
<li><font face="verdana" size=2>Syed Hizbullah</font></li> | |
<li><font face="arial" color="#ff0000">Muheeb Ullah</font></li> | |
</ol> | |
<table> | |
<tr> | |
<th>Serial No: </th> | |
<th>Name</th> | |
</tr> | |
<tr> | |
<td>1</td> | |
<td>Syed Hizbullah</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Abdul Wasay</td> | |
</tr> | |
</table> | |
<img src="http://www.krokodili.com/wp-content/uploads/2013/01/Google-Apps.jpeg" width=300 height=50 /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment