-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.html.html
More file actions
221 lines (147 loc) · 3.13 KB
/
Copy pathflex.html.html
File metadata and controls
221 lines (147 loc) · 3.13 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html>
<head>
<title>Css Selectors Example</title>
<style>
section{
padding:5px;
margin:5px;
}
.header{
display:flex;
}
header div{
flex=1;
}
div ul{
display:flex;
list-style:none;
}
div{
display:flex;
}
ul li{
margin: 10px;
padding:15px;
margin:5px;
border:2px;
list-style:none;
}
li a{
margin: 5px;
text-decoration:none;
fobt-size: 24px;
padding:100px;
color: green;
}
.header img{
width:330px;
height:200px;
border:3px solid black;
margin:5px;
}
.flexContainer img{
width:100%;
height:200px;
}
.flexConatiner{
display:flex;
text-align:center;
}
.flexContainer1 img{
padding:5px;
flex: 1;
margin: 5px;
}
h1{
font-size:50px;
padding:10px;
margin:5px;
}
table, th, td {
display:flex;
padding:10px;
width:100%;
}
form{
background-color:#008000;
}
footer {
background-color: #008080;
padding:25px;
}
footer h3{
text-align:center;
background-color:#008080;
}
form{
display:flex;
}
section h2{
text-align: center;
font-size: 25px;
padding:5px;
}
</style>
</head>
<body>
<section>
<div class="header">
<img src="./images/img1.jpg" alt="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">AboutUs</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">ContactUs</a></li>
</ul>
</div>
</section>
<section >
<div class="flexContainer">
<img src="./images/img13.jpg" alt="banner" height="500px">
</div>
</section>
<section>
<h2>Gallery</h2>
<div class="flexContainer1">
<a href="#"><img src="./images/img5.jpg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img6.jpeg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img7.jpg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img8.jpg" alt="coffee" height="190px" width="400px"></a>
</div>
</section>
<section>
<div class="flexContainer1">
<a href="#"><img src="./images/img5.jpg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img6.jpeg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img7.jpg" alt="coffee" height="190px" width="400px"></a>
<a href="#"><img src="./images/img8.jpg" alt="coffee" height="190px" width="400px"></a>
</div>
</section>
<section>
<h2>Enquire Now</h2>
<form>
<label>Name</label>
<input type="text" name="name">
<label>Contact No</label>
<input type="text" name="Contact Number">
<label>Shop</label>
<select name="Product">
<option>Shop</option>
<option>Cart</option>
<option>Single Product</option>
<option>Checkout</option></select>
<label>Country</label>
<input type="checkbox" name="country" value="USA" checked>
<label>Paris</label>
<input type="checkbox" name="country" value="India" checked>
<label>North Indian</label>
<input type="checkbox" name="country" value="Paris" checked>
<input type="submit">
<input type="reset" name="reset" value="Reset"></form>
</section>
<footer>
<h3>@ COPYRIGHT 2020. ALL RIGHTS RESERVED.</h3>
</footer>
</body>
</html>