Skip to content

Instantly share code, notes, and snippets.

@anaszen777
Created August 11, 2013 07:19
Show Gist options
  • Save anaszen777/6203844 to your computer and use it in GitHub Desktop.
Save anaszen777/6203844 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Table</title>
</head>
<body>
<h1>Creation of Table.</h1>
<br>
<p>Below is table created using HTML.</p>
<table border="2">
<tr>
<td>Serial No.</td>
<td>Courses</td>
</tr>
<tr>
<td>1.</td>
<td>HTML</td>
</tr>
<tr>
<td>2.</td>
<td>CSS</td>
</tr>
<tr>
<td>3.</td>
<td>ASP.NET</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment