Skip to content

Instantly share code, notes, and snippets.

@DiegoPinho
Created July 25, 2018 01:55
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 DiegoPinho/1f4ac38a4ddbcd99d8505b3653c05a05 to your computer and use it in GitHub Desktop.
Save DiegoPinho/1f4ac38a4ddbcd99d8505b3653c05a05 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Escolinha da Bagunça</title>
<meta charset="utf-8" />
<meta name="description" content="notas escolares dos alunos da escolinha do barulho">
<meta name="keywords" content="escolinha do barulho, escolinha, média">
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 15px;
}
p {
font-size: 20px;
}
</style>
</head>
<body>
<h1>Escolinha da bagunça</h1>
<h2>Onde a ordem não tem vez!<h2>
<p>Abaixo seguem as notas dos alunos da Escolinha da Bagunça</p>
<table style="width:100%">
<tr>
<th>Nome</th>
<th>Sala</th>
<th>N1</th>
<th>N2</th>
<th>Média</th>
<tr>
<tr>
<td>Diego</td>
<td>B1</td>
<td>10</td>
<td>10</td>
<td>10</td>
<tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment