Skip to content

Instantly share code, notes, and snippets.

@jimmibond
Created July 30, 2018 18:41
Show Gist options
  • Save jimmibond/c26185a77c205cf8f15c2af3b187f838 to your computer and use it in GitHub Desktop.
Save jimmibond/c26185a77c205cf8f15c2af3b187f838 to your computer and use it in GitHub Desktop.
html sample data
<!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