forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
228 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<!DOCTYPE html> | ||
|
||
|
||
|
||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
|
@@ -250,14 +246,14 @@ | |
|
||
<ul class="navLinks"> | ||
|
||
<li class="link" data-aos=""><a href="#Home">Home</a></li> | ||
<li class="link" data-aos=""><a href="#AboutUs"> AboutUs</a></li> | ||
<li class="link" data-aos=""><a href="#Destinations">Destinations</a></li> | ||
<li class="link" data-aos=""><a href="#trip">Pricing</a></li> | ||
<li class="link" data-aos=""><a href="#ReviewGallery">Trip Gallery</a></li> | ||
<li class="link" data-aos=""><a href="#testimonials">Testimonials</a></li> | ||
<li class="link" data-aos=""><a href="index.html#Home">Home</a></li> | ||
<li class="link" data-aos=""><a href="index.html#AboutUs"> AboutUs</a></li> | ||
<li class="link" data-aos=""><a href="index.html#Destinations">Destinations</a></li> | ||
<li class="link" data-aos=""><a href="index.html#trip">Pricing</a></li> | ||
<li class="link" data-aos=""><a href="index.html#ReviewGallery">Trip Gallery</a></li> | ||
<li class="link" data-aos=""><a href="index.html#testimonials">Testimonials</a></li> | ||
<li class="link" data-aos=""><a href="feedback.html">Rate Us?</a></li> | ||
<li class="link" data-aos=""><a href="#cnt-form">Contact Us</a></li> | ||
<li class="link" data-aos=""><a href="index.html#cnt-form">Contact Us</a></li> | ||
|
||
|
||
</ul> | ||
|
@@ -382,7 +378,7 @@ <h2>Have More questions?</h2> | |
<p>Feel Free to Email us!</p> | ||
</div> | ||
<div> | ||
<button class="moreemail">Send Email</button> | ||
<button class="moreemail" onclick="sendEmail()">Send Email</button> | ||
</div> | ||
</div> | ||
|
||
|
@@ -458,6 +454,11 @@ <h2>Have More questions?</h2> | |
logoutButton.disabled = true; | ||
} | ||
}); | ||
|
||
|
||
function sendEmail() { | ||
window.location.href = "mailto:[email protected]"; | ||
} | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
background: linear-gradient(to right, #8e2de2, #4a00e0); | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
.container { | ||
text-align: center; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
max-width: 400px; | ||
width: 90%; | ||
} | ||
|
||
.container:hover { | ||
transform: scale(1.05); | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
h2 { | ||
color: #333; | ||
font-family: Arial, sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.