-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlista.html
50 lines (48 loc) · 1.04 KB
/
lista.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title> listas-tabelas.html</title>
<meta charset="UTF-8">
</head>
<font color= HotPink>
<h1>Listas não ordenadas</h1>
</font>
<u>
<li>Desktop</li>
<li>Notebook</li>
<li>Netbook</li>
<li>Table</li>
</u>
<hr> <!--insere uma linha horizontal-->
<font color= #8A2BE2>
<h1>Listas ordenadas</h1>
</font>
<ol>
<li>Desktop</li>
<li>Notebook</li>
<li>Netbook</li>
<li>Table</li>
</ol>
<hr> <!--insere uma linha horinzontal-->
<font color=#98FB98>
<h1>Tabela</h1>
</font>
<table border="4">
<tr>
<td>Nome</td>
<td>Idade</td>
<td>Profissão</td>
</tr>
<tr>
<td>Lucas</td>
<td>22</td>
<td>estudante</td>
</tr>
<tr>
<td>Roger</td>
<td>23</td>
<td>Designer</td>
</table>
<body>
</body>
</html>