-
Notifications
You must be signed in to change notification settings - Fork 0
/
flexmodel_2006225.html
79 lines (74 loc) · 2.08 KB
/
flexmodel_2006225.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
<!DOCTYPE html>
<html>
<head>
<title>
4th_Assignment
</title>
<style>
body{
background-image:url(back.jpg);
background-repeat: repeat;
}
.text{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: x-large;
color: darkblue;
}
img {
max-height: 90%;
min-width: 90%;
}
.flex-container{
width:100%;
height:auto;
display:flex;
flex-direction:row;
flex-wrap:wrap;
}
.flex{
width:200px;
text-align:center;
height:250px;
padding: 1rem;
margin: 20px;
color:white;
font-size:25px;
Line-height:200px;
border: darkcyan;
border-radius:20px;
margin:60px;
</style>
</head>
<body>
<center><h1 class = "text"> Flex display using images</h1></center>
<div class="flex-container">
<div class="flex">
<img src="pic1.jfif" alt="">
</div>
<div class="flex">
<img src="pic13.jpg" alt="">
</div>
<div class="flex">
<img src="PIC2.jpg" alt="">
</div>
<div class="flex">
<img src="Pic4.jpg" alt="">
</div>
<div class="flex">
<img src="pic5.jpg" alt="">
</div>
<div class="flex">
<img src="pic11.jpg" alt="">
</div>
<div class="flex">
<img src="pic8.jpg" alt="">
</div>
<div class="flex">
<img src="PIC2.jpg" alt="">
</div>
<div class="flex">
<img src="pic10.jfif" alt="">
</div>
</div>
</body>
</html>