-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
82 lines (82 loc) · 2.53 KB
/
gallery.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
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gallery</title>
<link rel="stylesheet" href="css/gallery.css">
<link rel="icon" href="logos/favicon.ico">
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<nav id="horizontal-bar">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="videos.html">Videos</a>
</li>
<li>
<a href="about-me.html">About me</a>
</li>
</ul>
</nav>
<header>
<h1>Photo Gallery</h1>
</header>
<div class="photo_gallery">
<a href="PhotoHTML/PH1.html" class="photos">
<img src="img/1.JPG" alt="Percevejo da malva">
</a>
<a href="PhotoHTML/PH2.html" class="photos">
<img src="img/2.JPG" alt="Aranha">
</a>
<a href="PhotoHTML/PH3.html" class="photos">
<img src="img/3.JPG" alt="Flor muito perto">
</a>
<a href="PhotoHTML/PH4.html" class="photos">
<img src="img/4.JPG" alt="Bolinha na mesa">
</a>
<a href="PhotoHTML/PH5.html" class="photos">
<img src="img/5.JPG" alt="Bloco Cimento">
</a>
<a href="PhotoHTML/PH6.html" class="photos">
<img src="img/6.JPG" alt="Flor Amarela">
</a>
<a href="PhotoHTML/PH7.html" class="photos">
<img src="img/7.JPG" alt="Flor">
</a>
<a href="PhotoHTML/PH8.html" class="photos">
<img src="img/8.jpg" alt="Flor">
</a>
<a href="PhotoHTML/PH9.html" class="photos">
<img src="img/9.JPG" alt="Mosca Na Flor">
</a>
<a href="PhotoHTML/PH10.html" class="photos">
<img src="img/10.jpg" alt="Flor muito pequena">
</a>
<a href="PhotoHTML/PH11.html" class="photos">
<img src="img/11.jpg" alt="Jaro Branco">
</a>
<a href="PhotoHTML/PH12.html" class="photos">
<img src="img/12.jpg" alt="Flor mt perto">
</a>
<a href="PhotoHTML/PH13.html" class="photos">
<img src="img/13.jpg" alt="Flor mt perto">
</a>
<a href="PhotoHTML/PH14.html" class="photos">
<img src="img/14.jpg" alt="Flor mt perto">
</a>
<a href="PhotoHTML/PH15.html" class="photos">
<img src="img/15.jpg" alt="Flor mt perto">
</a>
</div>
<a class="return_top" href="#" title="Top">▲</a>
<footer>
<span>Copyright © 2022 | Universidade dos Açores | António Eduardo Costa Correia</span>
</footer>
</body>
</html>