-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMumbai.html
More file actions
194 lines (148 loc) · 4.67 KB
/
Mumbai.html
File metadata and controls
194 lines (148 loc) · 4.67 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
<!DOCTYPE html>
<html>
<head>
<title>Mumbai</title>
<style>
*{
margin:0; padding:0;
}
.two{
display:block;
}
section img{
border: 2px solid black;
margin:14px 15px;
width:945px;
height:730px;
}
.head{
display:flex;
background:#E34141;
color:#FFFFFF;
align-items: center;
border:2px solid #000000;
position:sticky;
top:0;
}
.head .a{
display: flex;
align-items:center;
width:50%;
margin:5px 7px;
}
.head .a img{
height:30px; width:30px;
border: 2px solid #52D2E7;
border-radius: 10px;
margin-right: 7px;
}
.head .b{
display:flex;
width:50%;
padding:0px 15px;
margin-left:20px;
}
header button{
margin-left:20px;
border: 2px solid #2EE3EB;
border-radius: 5px;
background:black;
height:30px;
text-transform: uppercase;
}
header button a{
text-decoration:none;
color:white;
padding:7px;
}
header form{
margin-left: 10px;
display:flex;
}
header form input{
margin-left: 10px;
height:24px;
border:2px solid #2EE3EB;
border-radius:5px;
}
header form button{
color:white;
padding:2px 7px;
margin-left: 2px;
}
header form button:hover{
background:#FAFAFA;
color:#000000;
}
.para{
border:3px solid black;
padding: 5px 15px;
margin: 14px 15px;
}
footer{
background:red;
color:yellow;
justify-content: center;
align-items: center;
padding:0px 100px;
}
footer .copyright{
width: 200px;
display: flex;
margin:auto;
}
footer .copyright .oval{
width:14px; height:16px;
border:1px solid white;
border-radius:30px;
text-transform: uppercase;
/*padding:1px 2px 1px 2px;*/
color:white;
background:black;
margin:1px 5px;
padding-left: 2px;
}
</style>
</head>
<body bgcolor="skyblue">
<header class="head">
<div class="a">
<img src="Mumbai.jpg">
<h1>Mumbai</h1></div>
<div class="b"><div>
<button> <a href="travel and tourism.html">Home</a></button>
</div>
<div><button><a href="About.html">About</a></button></div>
<div>
<button type="button"> <a href="mailto:Ayush.vishalgupta6244@gmail.com?subject=my problem&body=write your problem">contact us</a></button>
</div>
<form>
<input type="email" placeholder="submit your email"><button type="submit">SUBMIT</button>
</form>
</div>
</header>
<section class="two">
<div>
<img src="Mumbai.jpg" style="border:solid">
</div>
<div>
<img src="Gateway.jpg" style="border:solid">
</div>
<div class="para">
<h6><li>It is one of the largest port city.<hr><br> <li>Mumbai (English: /src=""mʊmˈbaɪ/, Marathi: [ˈmumbəi]; formerly known as Bombay /bɒmˈbeɪ/, the official name until 1995) is the capital city of the Indian state of Maharashtra.
<hr><br><li>According to the United Nations, as of 2018, Mumbai is the second-most populous city in the country after Delhi and the seventh-most populous city in the world with a population of roughly 20 million.
<hr><br><li>As per Indian government population census of 2011, Mumbai was the most populous city in India with an estimated city proper population of 12.5 million living under Municipal Corporation of Greater Mumbai.
<hr><br><li>Mumbai is the centre of the Mumbai Metropolitan Region, the sixth most populous metropolitan area in the world with a population of over 23 million.
<hr><br><li>Mumbai lies on the Konkan coast on the west coast of India and has a deep natural harbour.
<hr><br><li>In 2008, Mumbai was named an alpha world city. It has the highest number of millionaires and billionaires among all cities in India.
<hr><br><li>Mumbai is home to three UNESCO World Heritage Sites: the Elephanta Caves, Chhatrapati Shivaji Maharaj Terminus, and the city's distinctive ensemble of Victorian and Art Deco buildings.</h6></div>
</section>
<hr color="black">
<footer>
<div class="copyright">
copyright 2021<div class="oval">c</div>
</div>
</footer>
<hr color="black">
</body>
</html>