Skip to content

Instantly share code, notes, and snippets.

@nm-scripts
Created January 23, 2020 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nm-scripts/8f14e0e3bdba1a2a64732878b75ddf09 to your computer and use it in GitHub Desktop.
Save nm-scripts/8f14e0e3bdba1a2a64732878b75ddf09 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Border</title>
</head>
<body>
<table border="1">
<tr>
<th> title 1 </th>
<th> title 2 </th>
</tr>
<tr>
<td>line 2- column 1</td>
<td>line 2- column 2</td>
</tr>
<tr>
<td>line 3- column 1</td>
<td>line 3- column 2</td>
</tr>
<tr>
<td>line 4- column 1</td>
<td>line 4- column 2</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment