-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKolkata.html
186 lines (143 loc) · 4.04 KB
/
Kolkata.html
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
<html>
<head>
<title>Kolkata</title>
<style>
*{
margin: 0;
padding: 0;
}
.seven{
display:block;
}
section img{
border: 2px solid black;
margin:14px 15px;
width:945px;
height:310px;
}
.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:120px;
}
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: 30px;
}
header form input{
margin-left: 20px;
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">
</head>
<body bgcolor="skyblue">
<header class="head">
<div class="a">
<img src="Victoria.jpg">
<h1>Kolkata</h1></div>
<div class="b"><div>
<button> <a href="travel and tourism.html">Home</a></button>
</div>
<div>
<button type="button"> <a href="mailto:[email protected]?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="seven">
<div>
<img src="Victoria.jpg" style="border:solid">
</div>
<div class="para">
<h5>
<li>Kolkata has many buildings adorned with Indo-Islamic and Indo-Saracenic architectural motifs. Several well-maintained major buildings from the colonial period have been declared "heritage structures";[224] others are in various stages of decay.[225][226] Established in 1814 as the nation's oldest museum, the Indian Museum houses large collections that showcase Indian natural history and Indian art.[227] Marble Palace is a classic example of a European mansion that was built in the city. The Victoria Memorial, a place of interest in Kolkata, has a museum documenting the city's history. The National Library of India is the leading public library in the country while Science City is the largest science centre in the Indian subcontinent.[228]
</h5>
</div>
</section>
<hr color="black">
<footer>
<div class="copyright">
copyright 2021<div class="oval">c</div>
</div>
</footer>
<hr color="black">
</body>
</html>