-
Notifications
You must be signed in to change notification settings - Fork 0
/
teste.html
49 lines (46 loc) · 1.06 KB
/
teste.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Cursos</title>
<style type="text/css">
body {
font-family: Arial, Verdana, sans-serif;
color: #111111;}
th {
border-bottom: 1px solid #0088dd;
text-align: left;
color: #0088dd;
font-weight: normal;}
td {
min-width: 150px;
min-height: 200px;
vertical-align: top;
line-height: 1.4em;}
td.description {
min-width: 450px;
max-width: 650px;
text-align: left;
padding: 5px;
margin: 0px;}
</style>
</head>
<body>
<header>
<h1>Eventos</h1>
</header>
<table>
<tr>
<th></th>
<th>Eventos</th>
<th>Data</th>
<th>Local:</th>
</tr>
<tr>
<td><img src="https://maisminas.org/wp-content/uploads/2019/07/unnamed-2-1170x610.jpg" width="200" height="150" alt="Fender Rhodes" /></td>
<td class="descricao"> Mostra de filmes </td>
<td>22 de julho </td>
<td>Ouro Preto, Minas Gerais</td>
</tr>
</table>
</body>
</html>