-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice1.html
More file actions
111 lines (97 loc) · 2.84 KB
/
Copy pathpractice1.html
File metadata and controls
111 lines (97 loc) · 2.84 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
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
109
110
111
<!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>Document</title>
<style>
#head{
/* border:1px solid red; */
text-align: center;
}
#head>p{
width:30%;
margin:auto;
margin-top: -20px;
}
#head>h1{
font-size: 60px;
}
#body{
/* border:1px solid red; */
width:70%;
margin:auto;
margin-top: 50px;
display:grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: 400px;
gap:20px
}
#body>div{
/* border:1px solid red; */
text-align: center;
}
#body>div>img{
width:100%
}
#body>div>p{
color:rgb(231, 117, 24)
}
@media all and (min-width:480px ) and (max-width:720px){
#body{
/* border:1px solid red; */
width:100%;
grid-template-columns: repeat(2,1fr);
grid-template-rows: repeat(2,auto);
gap:20px
}
#head>p{
width:60%;
margin:auto;
margin-top: -20px;
}
#head>h1{
font-size: 40px;
}
}
@media all and (min-width:320px ) and (max-width:479px){
#body{
/* border:1px solid red; */
width:100%;
grid-template-columns: repeat(1,1fr);
grid-template-rows: repeat(3,auto);
}
#head>p{
width:80%;
margin:auto;
margin-top: -20px;
}
#head>h1{
font-size: 30px;
}
}
</style>
</head>
<body>
<div id="head"><h1>Rooms & Suits</h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Officiis praesentium veritatis iure sit quo animi cupiditate modi quidem beatae nostrum?</p></div>
<div id="body">
<div>
<img src="https://preview.colorlib.com/theme/sogo/images/ximg_1.jpg.pagespeed.ic.sI14MfHd8f.webp" alt="">
<h1>Single Room</h1>
<p>90$ PER NIGHT</p>
</div>
<div>
<img src="https://preview.colorlib.com/theme/sogo/images/ximg_1.jpg.pagespeed.ic.sI14MfHd8f.webp" alt="">
<h1>Single Room</h1>
<p>90$ PER NIGHT</p>
</div>
<div>
<img src="https://preview.colorlib.com/theme/sogo/images/ximg_1.jpg.pagespeed.ic.sI14MfHd8f.webp" alt="">
<h1>Single Room</h1>
<p>90$ PER NIGHT</p>
</div>
</div>
</body>
</html>