Skip to content

Instantly share code, notes, and snippets.

@guidanoli
Created September 28, 2021 10:38
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 guidanoli/7edcd785e52ee39155617334f65d9ed2 to your computer and use it in GitHub Desktop.
Save guidanoli/7edcd785e52ee39155617334f65d9ed2 to your computer and use it in GitHub Desktop.
Template HTML para Horário de Aulas
<html>
<head>
<title>Horário das aulas</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 10px;
}
table {
width: 100%;
}
.border-cell {
background-color: #dbe7fc;
}
</style>
</head>
<body>
<table>
<tr class="border-cell">
<th style="background-color: #777777">
</th>
<th>
Segunda
</th>
<th>
Terça
</th>
<th>
Quarta
</th>
<th>
Quinta
</th>
<th>
Sexta
</th>
</tr>
<tr>
<th class="border-cell">
7h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
8h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
9h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
10h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
11h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
12h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
13h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
14h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
15h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
16h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
17h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
18h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
<tr>
<th class="border-cell">
19h
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
<th>
</th>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment