-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgallery.html
50 lines (50 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gallery</title>
<link rel="stylesheet" href="styles.css">
<style>
/* .gallery-wrap{
position: relative;
}
.gallery-wrap div{
position: absolute;
top: 40%;
left: 20%;
} */
</style>
</head>
<body>
<header>
<h1 class="mcHeader">Marioclub Adventure club</h1>
</header>
<ul>
<li><a href="index.html" class="active">Home</a></li> <li><a href="friends.html">friends</a></li>
<li><a href="gallery.html">gallery</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
<main>
<div class="gallery-wrap">
<div>
<img src="Images/Coins.PNG" alt="mario">
<p >Coins</p>
</div>
<div>
<img src="Images/Underwater.PNG" alt="idk">
<p>Underwater</p>
</div>
<div>
<img src="Images/Trap.JPG" alt="trap">
<p>Trap</p>
</div>
<div>
<img src="Images/Villains.JPG" alt="villains">
<p>Villains</p>
</div>
</div>
</main>
<footer>© 2024 Ezehi Theddy</footer>
</body>
</html>