-
Notifications
You must be signed in to change notification settings - Fork 0
/
galerias_img.html
74 lines (57 loc) · 2.1 KB
/
galerias_img.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<link rel="icon" href="./favicon/galeria-icon.png">
<title>Galeria de fotos</title>
<style>
#icon {
width: 50px;
position: fixed;
bottom: 50px;
right: 50px;
}
#icon:hover {
filter:drop-shadow(3px 8px 9px #000000);
}
</style>
</head>
<body>
<h1 id="inicio">Trabalhando com diversos elementos</h1>
<hr>
<h3>Filmes do Tim Burton: </h3>
<p>
<a href="#beetlejuice"> <!-- Link Beetlejuice -->
<img src="./img/beetlejuice_mini.jpg" alt="Beetlejuice">
</a>
<a href="#chepeleiro"> <!-- Link Chepeleiro -->
<img src="./img/chapeleiro_mini.jpg" alt="Chapeleiro maluco">
</a>
<a href="#noiva_cadaver"> <!-- Link Noiva Cadáver -->
<img src="./img/noiva_cadaver_mini.jpg" alt="A noiva cadáver">
</a>
</p>
<hr>
<figure id="beetlejuice"> <!-- Beetlejuice -->
<img src="./img/beetlejuice.jpg" alt="Beetlejuice" title="Beetlejuice">
<figcaption>
Beetlejuice em Os Fantasmas Se Divertem.
</figcaption>
</figure>
<hr>
<figure id="chepeleiro"> <!-- Chepeleiro -->
<img src="./img/chapeleiro.jpg" alt="Chapeleiro maluto" title="Chapeleiro maluco">
<figcaption>
O chapeleiro Maluco, no país das maravilhas
</figcaption>
</figure>
<hr>
<figure id="noiva_cadaver"> <!-- Noiva Cadáver -->
<img src="./img/noiva_cadaver.jpg" alt="CA noiva cadáver" title="A noiva cadáver">
<figcaption>
Animação de Tim Burton: A Noiva Cadáver
</figcaption>
</figure>
<a href="#inicio"><img id="icon" src="./favicon/top-icon.png" alt=""></a>
</body>
</html>