Open in github.dev
Open in a new github.dev tab
Open in codespace
/
image_links.html
93 lines (86 loc) · 2.78 KB
/
image_links.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
<!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: 20px;
}
header, nav, section, footer {
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Michael Website</h1>
<p>This website features images related to technology, nature, and food.</p>
</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>
<section id="home">
<h2>Home</h2>
<p>Welcome to our homepage! Explore the amazing world of technology.</p>
<a href="https://tinyurl.com/4f5hxkj5" target="_blank">
<img src="Engineering_management.jpg" alt="Engineering Management">
</a>
</section>
<section id="gallery">
<h2>Gallery</h2>
<div class="gallery">
<a href="https://tinyurl.com/bdhm68af" target="_blank">
<img src="dandelion_image.jpg" alt="Dandelion Image Mist">
</a>
<a href="https://tinyurl.com/3k4j7n84" target="_blank">
<img src="plant_image.jpg" alt="Young Plant">
</a>
<a href="https://tinyurl.com/2ckmer4b" target="_blank">
<img src="sunset.jpg" alt="Sunset on Mountains">
</a>
</div>
</section>
<section id="menu">
<h2>Menu</h2>
<ul>
<li>
<a href="https://tinyurl.com/k2247bnj" target="_blank">
<img src="food_app_order.jpg" alt="Food Order from Phone">
</a>
- Food App
</li>
<li>
<a href="https://tinyurl.com/5n8w4h3j" target="_blank">
<img src="fresh_friuts_vegetables.jpg" alt="Fruits and Vegetables">
</a>
- Fresh Fruits and Vegetables
</li>
<li>
<a href="https://tinyurl.com/249zz846" target="_blank">
<img src="food_waste.jpg" alt="Food Disposal">
</a>
- Food Disposal
</li>
</ul>
</section>
<footer>
<p>© 2024 PLP Week 2 Image Links</p>
</footer>
</body>
</html>