-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula1.html
32 lines (31 loc) · 1.04 KB
/
aula1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<img src="/home/joao/Documentos/desenvolvimento_web_facs/imagens/exemplo1.jpg" alt="Teste" height="300" width="400">
<ul>
<li>Unordered List</li>
<li>Testando ordenamento</li>
<li>Linha 2</li>
<li>Aqui</li>
</ul>
<br>
<h3>Lista de sites favoritos</h3>
<ul>
<li><a href="http://www.globo.com" target="_blank">Globo</a></li>
<li><a href="http://www.youtube.com" target="_blank">Youtube</a></li>
<li><a href="http://www.netflix.com" target="_blank">Netflix</a></li>
</ul>
<hr>
<ol>
<li><a href="http://www.globo.com" target="_blank">Globo</a></li>
<li><a href="http://www.youtube.com" target="_blank">Youtube</a></li>
<li><a href="http://www.netflix.com" target="_blank">Netflix</a></li>
</ol>
</body>
</html>