-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
79 lines (74 loc) · 1.98 KB
/
example.html
File metadata and controls
79 lines (74 loc) · 1.98 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
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Links</title>
<style>
/* Optional CSS for styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, nav, main, footer {
padding: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
img {
max-width: 100%;
height: auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to our Website!</h1>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#menu">Menu</a></li>
</ul>
</nav>
<main>
<section id="home">
<h2>Home</h2>
<p>Welcome to our website! Check out the latest in technology:</p>
<a href="https://www.example.com/technology" target="_blank"><img src="technology.webp" alt="Technology"></a>
</section>
<section id="gallery">
<h2>Gallery</h2>
<div class="gallery">
<a href="https://www.example.com/nature_image1" target="_blank"><img src="nature.webp" alt="Nature 1"></a>
<a href="https://www.example.com/nature_image2" target="_blank"><img src="nature2.jpg" alt="Nature 2"></a>
<a href="https://www.example.com/nature_image3" target="_blank"><img src="nature3.jpg" alt="Nature 3"></a>
</div>
</section>
<section id="menu">
<h2>Menu</h2>
<ul>
<li><a href="choma.jpg" target="_blank">Choma</a></li>
<li><a href="fries2.avif" target="_blank">Fries</a></li>
<li><a href="burger.jpg" target="_blank">Burger</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Image Links</p>
</footer>
</body>
</html>