-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoa.html
More file actions
200 lines (151 loc) · 4.84 KB
/
Goa.html
File metadata and controls
200 lines (151 loc) · 4.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
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
<html>
<head>
<title>Goa</title>
<style>
*{
margin:0; padding:0;
}
.six{
display:block;
}
section img{
border: 2px solid black;
margin:14px 15px;
width:945px;
height:630px;
}
.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: 0px 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="church.jpg">
<h1>Goa</h1></div>
<div class="b"><div>
<button> <a href="travel and tourism.html">Home</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="six">
<div>
<img src="church.jpg" style="border:solid">
</div>
<div class="para">
<h6>
<li>Tourism is generally focused on the coastal areas of Goa, with lower tourist activity inland. In 2010, there were more than 2 million tourists reported to have visited Goa, about 1.2 million of whom were from abroad.
<hr>
<br><li>As of 2013, Goa was a destination of choice for Indian and foreign tourists, particularly Britons and Russians, with limited means who wanted to party. The state was hopeful that changes could be made which would attract a more upscale demographic.
<hr>
<br><li>
Goa stands 6th in the Top 10 Nightlife cities in the world in National Geographic Travel. Notable nightclubs in Goa include Chronicle, Mambos and Sinq.
<hr>
<br><li>One of the biggest tourist attractions in Goa is water sports. Beaches like Baga and Calangute offer jet-skiing, parasailing, banana boat rides, water scooter rides, and more. Patnem beach in Palolem stood third in CNN Travel's Top 20 Beaches in Asia.
<hr>
<br><li>Over 450 years of Portuguese rule and the influence of the Portuguese culture presents to visitors to Goa a cultural environment that is not found elsewhere in India. Goa is often described as a fusion between Eastern and Western culture with Portuguese culture having a dominant position in the state be it in its architectural, cultural or social settings.
<hr>
<br><li>The state of Goa is famous for its excellent beaches, churches, and temples.[64] The Bom Jesus Cathedral, Fort Aguada and a new wax museum on Indian history, culture and heritage in Old Goa are other tourism destinations.
</h6>
</div>
</section><hr color="black">
<footer>
<div class="copyright">
copyright 2021<div class="oval">c</div>
</div>
</footer>
<hr color="black">
<!---------script------------>
<script src="Goa.js"> </script>
</body>
</html>