-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWayanad.html
More file actions
127 lines (120 loc) · 5.13 KB
/
Wayanad.html
File metadata and controls
127 lines (120 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wayanad</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(window).on('scroll',function(){
if($(window).scrollTop()){
$('nav').addClass('black');
}
else{
$('nav').removeClass('black');
}
})
</script>
</head>
<body>
<nav>
<div class="logo">
<a href="#"></a><span>K</span>ERALA<br> <span>T</span>ourism</a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#Thingstodo">Things to do</a></li>
<li><a href="#travelwithus">Plan your trip</a></li>
<li><a href="#Planyourtrip">Tour Packages</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</nav>
<section class="beauty">
<div class="lead">
<h2>"Nature's Abode"</h2><br>
<h1>Wayanad Tourism</h1><br>
<p>Wayanad is one of the districts of Kerala state of India which was formed on November 1, 1980 by carving out the areas of Kozhikode and Kannur districts. It was known as Mayakshetra in its previous times. It is set lofty on the majestic Western Ghats with altitudes ranging from 700 to 2100 Metres above mean sea level. It is the least populous district in Kerala.Agriculture, is the main stay of the economy. Coffee, tea, cocoa, pepper, plantain and vanilla are the main crops. Besides these cash crops, the most important crop in the district is rice.</p>
</div>
</section>
<aside class="right">
<h2>Top places in Wayanad</h2>
<div class="one">
<div class="pic">
<img src="https://www.holidify.com/images/cmsuploads/square/shutterstock_1140378593_20200116122458_20200116122531.png">
</div>
<div class="dis">
<h5>Banasura sagar dam</h5>
</div>
</div>
<div class="one">
<div class="pic">
<img src="https://www.holidify.com/images/cmsuploads/square/966_20200529095124.jpg" alt="">
</div>
<div class="dis">
<h5>Wildlife sanctuary</h5>
</div>
</div>
<div class="one">
<div class="pic">
<img src="https://www.holidify.com/images/cmsuploads/square/shutterstock_796295632_20200116122849_20200116122911.png" alt="">
</div>
<div class="dis">
<h5>Edakkal caves</h5>
</div>
</div>
</aside>
<footer>
<div class="main-content">
<div class="left box">
<h2>About Us</h2>
<div class="content">
<p>The site holds a virtual encyclopedia of Kerala and includes almost 2 million words of text in 18 languages, a few thousand images, and 3000 video clips. To ensure ease of use and precision in search results, Kerala Tourism uses Google's site search tools for search queries.</p>
<div class="social">
<a href="#"><span class="fab fa-facebook-f"></span></a>
<a href="#"><span class="fab fa-twitter"></span></a>
<a href="#"><span class="fab fa-instagram"></span></a>
<a href="#"><span class="fab fa-youtube"></span></a>
<a href="#"><span class="fab fa-whatsapp"></span></a>
</div>
</div>
</div>
<div class="center box">
<h2>Address</h2>
<div class="content">
<div class="place">
<span class="fas fa-map-marker-alt"></span>
<span class="text">Department of Tourism, Government of Kerala, Park View, Thiruvananthapuram, Kerala, India</span>
</div>
<div class="phone">
<span class="fas fa-phone-alt"></span>
<span class="text">+91 471 2321132</span>
</div>
<div class="email">
<span class="fas fa-envelope"></span>
<span class="text">info@keralatourism.org</span>
</div>
</div>
</div>
<div class="right box">
<h2>Contact Us</h2>
<div class="content">
<form action="#">
<div class="email">
<div class="text">Email*</div>
<input type="email" required>
</div>
<div class="msg">
<div class="text">Message*</div>
<textarea cols="45" rows="4" required></textarea>
<br>
<button type="submit">Send</button>
</div>
</form>
</div>
</div>
</div>
<div class="owner">
<p>Created by Neethu. All right reserved by copyright@2021</p>
</div>
</footer>
</body>
</html>