-
Notifications
You must be signed in to change notification settings - Fork 0
/
week_2 web.html
108 lines (98 loc) · 2.79 KB
/
week_2 web.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: rgb(127, 193, 255);
}
header, nav, main, footer {
padding: 20px;
}
header {
background-color: #333;
color: #fff;
text-align: center;
border-radius: 50px;
}
nav ul {
list-style-type: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #333;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
color: #666;
}
main {
padding-top: 40px;
}
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.gallery img {
width: 100%;
height: auto;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
border-radius: 30px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Image Links</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! Explore the wonderful images we have curated for you.</p>
<a href="https://example.com/technology"><img src="technology_image.jpg" alt="Technology"></a>
</section>
<section id="gallery">
<h2>Gallery</h2>
<div class="gallery">
<a href="https://example.com/nature"><img src="nature_image1.jpg" alt="Nature 1"></a>
<a href="https://example.com/nature"><img src="nature_image2.jpg" alt="Nature 2"></a>
<a href="https://example.com/nature"><img src="nature_image3.jpg" alt="Nature 3"></a>
</div>
</section>
<section id="menu">
<h2>Menu</h2>
<ul>
<li><a href="https://example.com/food1"><img src="food_image1.jpg" alt="Food 1"></a> Food 1</li>
<li><a href="https://example.com/food2"><img src="food_image2.jpg" alt="Food 2"></a> Food 2</li>
<li><a href="https://example.com/food3"><img src="food_image3.jpg" alt="Food 3"></a> Food 3</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Image Links. All rights reserved.</p>
</footer>
</body>
</html>