-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 989 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (33 loc) · 989 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minhas Fábulas</title>
<style>
h1{
text-align: center;
color: red;
}
ul{
list-style: none;
font-size: 16px;
font-family: 'Courier New', Courier, monospace;
}
a{
color: rgb(90, 144, 153);
text-decoration: none;
}
</style>
</head>
<body>
<h1>Fábulas</h1>
<ul>
<li><a href="leao.html">O Leão e o Ratinho</a></li>
<li><a href="lobo.html">O Lobo e a Cabra</a></li>
<li><a href="raposa.html">A Raposa e as Uvas</a></li>
</ul>
<img width="250" src="https://i.redd.it/069qv8t0quc51.jpg" alt="">
<img width="250" src="https://us-tuna-sounds-images.voicemod.net/5bc46b69-1a9c-42b0-8afc-4d62a0cc5cf7-1667786833773.jpg" alt="lobo pede">
</body>
</html>