Skip to content

Instantly share code, notes, and snippets.

@sprintr
Created January 28, 2013 10:44
Show Gist options
  • Save sprintr/4654552 to your computer and use it in GitHub Desktop.
Save sprintr/4654552 to your computer and use it in GitHub Desktop.
Basic HTML Tags
<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