-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmedia.html
More file actions
80 lines (63 loc) · 2.06 KB
/
Copy pathmedia.html
File metadata and controls
80 lines (63 loc) · 2.06 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
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Media_Query</title>
<style>
.clip-arrow{
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
background-color:aqua;
}
@media all and (max-width: 1146px) and (min-width:921px) {
.clip-arrow {
width: 100%;
padding: 25px;
margin: 5px;
float: none;
}
}
@media all and (max-width: 920px) and (min-width: 721px) {
.clip-arrow {
width: 80%;
padding: 30px;
margin: 15px;
float: left;
}
}
@media all and (max-width: 720px) and (min-width: 521) {
.clip-arrow {
width: 65%;
padding: 30px;
margin: 15px;
float: left;
}
}
@media all and (max-width: 520px) and (min-width:321px) {
.clip-arrow {
width: 35%;
padding: 5px;
margin: 2px;
float: left;
}
}
@media all and (max-width: 320px) {
.clip-arrow {
width: 45%;
padding: 30px;
margin: 5px;
float: none;
}
}
</style>
</head>
<body>
<h1>Water Cycle</h1>
<img class="clip-arrow" src="WIN_20220521_18_57_51_Pro.jpg" alt="This is Sakshi Wanare" width="28%" height="40%">
<img class="clip-arrow" src="guitar.jpg" alt="This is Sakshi Wanare" width="28%" height="40%">
<img class="clip-arrow" src="cover theme.jpg" alt="This is Sakshi Wanare" width="28%" height="40%">
<img class="clip-arrow" src="cartoon girl.webp" alt="This is Sakshi Wanare" width="28%" height="40%">
<img class="clip-arrow" src="1588274620-963651-couple-poses-2jpg-6-1.jpg" alt="This is Sakshi Wanare" width="28%" height="40%">
</body>
</html>