-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment2(flex).html
More file actions
51 lines (51 loc) · 1.62 KB
/
assignment2(flex).html
File metadata and controls
51 lines (51 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div
style="
display: flex;
overflow-x: auto;
gap:20px;
flex-direction: row;
"
>
<div style="border: 2px solid black;">
<img src="p1.jpg" height="160px" style="min-width: 250px;" />
<p style="text-align: center;">Image 1</p>
</div>
<div style="border: 2px solid black;">
<img src="p2.jpg" height="160px" style="min-width: 250px;" />
<p style="text-align: center;">Image 2</p>
</div>
<div style="border: 2px solid black;">
<img
src="https://images.pexels.com/photos/333838/pexels-photo-333838.jpeg"
height="160px"
style="min-width: 250px;"
/>
<p style="text-align: center;">Image 3</p>
</div>
<div style="border: 2px solid black;">
<img
src="https://images.pexels.com/photos/417458/pexels-photo-417458.jpeg"
height="160px"
style="min-width: 250px;"
/>
<p style="text-align: center;">Image 4</p>
</div>
<div style="border: 2px solid black;">
<img
src="https://media.istockphoto.com/id/2222990006/photo/artificial-intelligence-machine-learning-large-language-model-ai-technology.jpg?s=1024x1024&w=is&k=20&c=oRGZnKsc7nYpHB0ts9EkdZTWBAt1BaXl9y_wX_Yfs_o="
height="160px"
style="min-width: 250px;"
/>
<p style="text-align: center;">Image 5</p>
</div>
</div>
</body>
</html>