-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
47 lines (47 loc) · 1.13 KB
/
gallery.html
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<header>
<img src="ai.jpg" alt="AI Images" class="header-img">
<h1>AI Images</h1>
</header>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Images</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="gallery.html" class="active">Gallery</a>
<a href="contact.html">Contact Us</a>
</nav>
<main>
<section id="gallery">
<h2>Gallery</h2>
<p>Here, you can see what Artificial Intelligence could generate.</p>
<div class="image-gallery">
<div class="image-item">
<img src="nig1.jpg" alt="Dog 1">
</div>
<div class="image-item">
<img src="nig2.jpg" alt="Dog 2">
</div>
<div class="image-item">
<img src="nig3.png" alt="Dog 3">
</div>
<div class="image-item">
<img src="nig4.png" alt="Dog 4">
</div>
<div class="image-item">
<img src="nig5.jfif" alt="Dog 5">
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Saving Bantay. All rights reserved.</p>
</footer>
</body>
</html>