Skip to content

Instantly share code, notes, and snippets.

@cbmgit
Created March 16, 2019 17:02
Show Gist options
  • Save cbmgit/97f3fe627004a2e3df81a54129d6e917 to your computer and use it in GitHub Desktop.
Save cbmgit/97f3fe627004a2e3df81a54129d6e917 to your computer and use it in GitHub Desktop.
HTML Sample
<!DOCTYPE html>
<html>
<head>
<style>body{background-color:#d0e4fe;}h1{color:orange;text-align:center;}p{font-family:"Times New Roman";font-size:20px;}</style>
</head>
<body>
<h1>CSS example!</h1>
<p>This is a paragraph.</p>
<table>
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
</table>
<hr>
<h3>3 Rows and 3 Columns:</h3>
<table>
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
<tr>
<td>700</td>
<td>800</td>
<td>900</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment