-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
169 lines (144 loc) · 3.31 KB
/
Copy pathabout.html
File metadata and controls
169 lines (144 loc) · 3.31 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
.review_container{
}
.about_container {
/*border: 2px solid black;*/
background-color:orange;
}
.about_us{
text-align: center;
background-color: orange;
}
.about_box {
background-color: grey;
/*border: 2px solid green;*/
display: flex;
justify-content: space-evenly;
}
.about_image {
/*border: 2px solid black;*/
width: 40%;
height: 320px;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 10px;
}
.about_image img{
height: 100%;
width: 100%;
border-radius: 10px;
}
.about_data {
/*border: 2px solid aqua;*/
width: 40%;
margin-top: 10px;
height: 320px;
margin-bottom: 10px;
}
.about_data h1{
font-size: 24px;
}
.about_data h2{
font-size: 22px;
}
.about_data p{
}
.review_container{
/*border: 2px solid black;*/
}
.review_container h1{
text-align: center;
}
.review_box {
/*border: 2px solid black;*/
background-color: tan;
display: flex;
justify-content: space-evenly;
}
.user {
/*border: 2px solid red;*/
width: 25%;
}
.user_image {
/*border: 2px solid black;*/
width: 100%;
height: 200px;
margin-bottom: 10px;
margin-top: 5px;
border-radius: 10px;
}
.user_image img{
height: 100%;
width: 100%;
border-radius: 2%;
}
.user_data{
/*border: 2px solid black;*/
width: 100%;
}
</style>
</head>
<body>
<div class="about_container">
<h1 class="about_us">About us</h1>
<div class="about_box">
<div class="about_image">
<img src="person1.avif">
</div>
<div class="about_data">
<h1 class="heading">Here Are the Details Of Our Luxurious Sutta Bar Shop</h1>
<h2>This is the main head shop of all the franchise distributed throughout the country.</h2>
<p>This is our shop where We believe to provide good quality with a healthy price segment which comes with cashback coupons worth:2500 (only if you buys food and drinks worth above 5k . Come fast dont miss this moment and also dont make your hunger wait for even 5 seconds .Order now till 25 .</p>
</div>
</div>
</div>
<!-- Review container -->
<div class="review_container">
<h1>Customer Reviews</h1>
<div class="review_box">
<div class="user">
<div class="user_image">
<img src="person2.avif">
</div>
<div class="user_data"><input type="text" value="Giant"> </strong>
<h2 class="stars">★ ★ ★ ★ ★</h2>
<p>ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. </p>
</div>
</div>
<div class="user">
<div class="user_image">
<img src="person3.avif">
</div>
<div class="user_data">
<h2>Simone</h2>
<h2 class="stars">★ ★ ★ ★ ☆</h2>
<p>ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
</div>
</div>
<div class="user">
<div class="user_image">
<img src="person4.jpg">
</div>
<div class="user_data">
<h2>Alien</h2>
<h2 class="stars">★ ★ ★ ☆ ☆</h2>
<p>ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequ</p>
</div>
</div>
</div>
</div>
</body>
</html>