-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatividade 4.html
59 lines (56 loc) · 1.18 KB
/
atividade 4.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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Atividade 4</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<br>
<table>
<tr>
<th>Marca</th>
<th colspan="1">Modelo</th>
<th>Ano</th>
</tr>
<tr>
<td rowspan="2">Toyota</td>
<td>Corolla</td>
<TD>2018</TD>
</tr>
<tr>
<td>Camry</td>
<TD>2019</TD>
</tr>
<tr>
<td rowspan="3">Honda</td>
<td>Civic</td>
<TD>2020</TD>
</tr>
<tr>
<td>Fit</td>
<TD>2019</TD>
</tr>
<tr>
<td>HRV</td>
<TD>2019</TD>
</tr>
<tr>
<td>Mitsubishi</td>
<td>Lancer</td>
<td>2017</td>
</tr>
<tfoot>
<tr>
<th colspan="3">Última atualização: 17/12/2020</th>
</tr>
</tfoot>
</table>
</body>
<style>
table, th, td
{
margin-left: 30px;
border:3px solid;
padding:5px ;
}