-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages_links.html
More file actions
78 lines (77 loc) · 2.24 KB
/
images_links.html
File metadata and controls
78 lines (77 loc) · 2.24 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Links</title>
<style>
/* CSS for styling can be added here */
/* Just for basic styling purposes, you can expand on this */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header, nav, section, footer {
padding: 20px;
background-color: #333;
color: #fff;
text-align: center;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.image-container {
margin: 10px;
}
.image-container img {
width: 200px;
height: auto;
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Image Links!</h1>
</header>
<nav>
<a href="#home">Home</a> |
<a href="#gallery">Gallery</a> |
<a href="#menu">Menu</a>
</nav>
<h1>Home</h1>
<body>
<p>Welcome to my website! here is an image related to Technology</p>
<a href="others/images.jpg" target="_blank">a microchip</a>
</body>
<h1>Gallery</h1>
<body>
<p>Check out some images of nature</p>
<a href="others/River.jpg" target="_blank">Water fall</a>
<br>
<a href="others/Savannah.jpg" target="_blank">Tropical Grasslands</a>
<br>
<a href="others/Sunset.jpg" target="_blank">Sunset in Savannah</a>
<br>
</body>
<h1>Menu</h1>
<body>
<p> Check out some of delicious dishes </p>
<a href="others/pilau samaki.jpg" target="_blank">Pilau samaki</a>
<br>
<a href="others/kande.jpg" target="_blank">Kande</a>
<br>
<a href="others/ugali samaki.jpg" target="_blank">Ugali samaki</a>
<br>
</body>
<footer>
<p>© 2024 Image Links. All rights reserved.</p>
</footer>
</head>
</html>
</html>