-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpage.html
More file actions
102 lines (102 loc) · 4.56 KB
/
webpage.html
File metadata and controls
102 lines (102 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple webpage example created using HTML.">
<meta name="keywords" content="HTML, webpage, coding">
<meta name="author" content="Your Name">
<title>HANI</title>
<style>
body {
font-family: Arial, sans-serif;
}
header {
background-color: #1f8979;
color: white;
padding: 10px 20px;
text-align: center;
}
nav {
background-color: #333;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0;
}
nav ul li a {
display: block;
padding: 10px 20px;
text-decoration: none;
color: white;
}
nav ul li a:hover {
background-color: #575757;
}
main {
padding: 20px;
text-align: center;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
img{
float:right;
}
text{
float:left;
}
</style>
</head>
<header>
<h1 style="font-family: 'Times New Roman';">HANI TOURISM</h1>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<body>
<main>
<h2 style="font-family:Times New Roman;">PLACES TO VISIT IN COORG</h2>
<img src="c:\Users\HARSHINI.S\Downloads\coorge image.jpg" width="20%">
<h2 style="text-align:left;font-family: Georgia;">THALA CAVERY</h2>
<p style="text-align:left;">Talakaveri or Talacauvery is the place that is generally considered to be the source of the river Kaveri and a holy place for many Hindus.
It is located on Brahmagiri hills near Bhagamandala in Kodagu district (Coorg), in the South Indian state of Karnataka.
It is located close to the border with Kasaragod district, Kerala.
Talakaveri stands at a height of 1,276 meters above sea level. It is an Important religious place.
It is the birth place of sacred river Cauvery, 46 km from Madikeri.
A small shrine with a beautifully decorated silver Shiva linga marks the spot where the mighty river originates.<a href="c:\Users\HARSHINI.S\Desktop\WEB PAGE\thalakaveri link.htm">About place</a></p><br><br><br>
<img src="c:\Users\HARSHINI.S\Downloads\coorge dubare.jpg" width="20%">
<h2 style="text-align:left;font-family: Georgia;">DUBARE ELEPHANT CAMP</h2>
<P style="text-align:left;">The Dubare Elephant Camp is a chance to get to know these giant, enchanting creatures better.
With a host of activities built around this, many a guest has left the camp with a sense of responsibility to do their bit towards protecting elephants.
A trained naturalist takes our guests through the complexities of elephant history, ecology and biology.<a href="c:\Users\HARSHINI.S\Desktop\WEB PAGE\dubare link.htm">About place</a></p><br><br><br>
<h2 style="text-align: left;font-family: 'Times New Roman';"> HONNAMANA KERE LAKE</h2>
<img src="c:\Users\HARSHINI.S\Downloads\coor.jpg" width="20%">
<P style="text-align: left;">The biggest lake in the region of Coorg, Honnamana Kere (Honnama Lake)is a place that must be visited while on your Coorg trip.
It is one of the many tourist spots in Somwarpet which is one of the taluks of Coorg.
Honnamana Kere Lake is located in Daddamalthe which is quite near to the village Sulimalthe. Sulimalthe village is at a distance of 6 km from Somwarpet town.
The Honnamana Kere presents tourists with breathtaking sceneries and amazing photographic opportunities. The environment around is relaxing and calm.<a href="c:\Users\HARSHINI.S\Downloads\link.htm">About place</a> </P>
</main>
</body>
<footer>
<p>© 2024 HANI Tourism. All Rights Reserved.</p>
</footer>
</html>