Skip to content

Instantly share code, notes, and snippets.

@DorukUlucay
Last active November 19, 2020 16:42
Show Gist options
  • Save DorukUlucay/ee3e075c22cb6220048209f45480a1f9 to your computer and use it in GitHub Desktop.
Save DorukUlucay/ee3e075c22cb6220048209f45480a1f9 to your computer and use it in GitHub Desktop.
html templates
<html>
<head>
<!-- <title></title> -->
<!-- <script src=""></script> -->
<!-- <style></style> -->
<!-- <link rel="stylesheet" type="text/css" href=""> -->
</head>
<body>
<p></p>
<script>
document.addEventListener("DOMContentLoaded", function(event) {});
</script>
</body>
</html>
<html>
<head>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
padding: 15px;
}
table {
text-align: left;
}
th {
margin: 5px;
padding: 5px;
border-bottom: 1px solid;
}
td {
margin: 5px;
padding: 5px;
border-bottom: 1px solid;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>caption1</th>
<th>caption2</th>
<th>caption3</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment