Skip to content

Commit

Permalink
Merge pull request #619 from Son7c/main
Browse files Browse the repository at this point in the history
Return to home button added to all pages
  • Loading branch information
YadavAkhileshh authored Nov 3, 2024
2 parents 893ddde + 0811787 commit 0313886
Show file tree
Hide file tree
Showing 4 changed files with 149 additions and 0 deletions.
29 changes: 29 additions & 0 deletions FAQs.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link rel="stylesheet" href="FAQs.css">
<title>Alien Invasion Defense - FAQ</title>
<link rel="icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">

<style>
/* Custom Scrollbar */
Expand Down Expand Up @@ -60,6 +61,34 @@
</style>
</head>
<body>
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i>&nbsp; Return to Home</a>
<style>
.home-nav a{
text-decoration: none;
height: 50px;
width: 220px;
color: white;
font-size: 1.25rem;
position: absolute;
z-index: 999;
top: 10px;
left: 40px;
background-color: rgba(255,255,255,0.2);
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
transition: all 0.4s ease;
}
.home-nav a:hover{
transform: scale(1.02);
background-color:#fff;
color: black;
}
</style>
</div>

<header>
<h1>Alien Invasion Defense - FAQ</h1>
</header>
Expand Down
27 changes: 27 additions & 0 deletions donation_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support Alien Invasion Defense - Premium Experience</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<style>
@keyframes float {
0% { transform: translateY(0px); }
Expand Down Expand Up @@ -415,6 +416,32 @@
</style>
</head>
<body>
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i>&nbsp; Return to Home</a>
<style>
.home-nav a{
text-decoration: none;
height: 50px;
width: 250px;
color: white;
font-size: 1.25rem;
position: absolute;
top: 20px;
left: 40px;
background-color: rgba(255,255,255,0.2);
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
transition: all 0.4s ease;
}
.home-nav a:hover{
transform: scale(1.02);
background-color:#fff;
color: black;
}
</style>
</div>
<div class="space-background" id="spaceBackground"></div>

<div class="container">
Expand Down
66 changes: 66 additions & 0 deletions privacy_policy.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,70 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Alien Invasion Defense</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<style>
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
color: #333;
}
h1, h2, h3 {
color: #2c3e50;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
p {
margin: 10px 0;
}
ul {
margin: 10px 0 20px 20px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #555;
}
</style>
</head>
<body>
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i>&nbsp; Return to Home</a>
<style>
.home-nav a{
text-decoration: none;
height: 50px;
width: 250px;
color: white;
font-size: 1.25rem;
position: absolute;
top: 35px;
left: 40px;
background-color: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
transition: all 0.4s ease;
}
.home-nav a:hover{
transform: scale(1.02);
background-color:#000;
color: white;
}
</style>
</div>


<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand All @@ -21,6 +86,7 @@ <h2>Introduction</h2>
the terms of this policy, please do not access the site.
</p>


<h2>1. Information We Collect</h2>
<ul>
<li>
Expand Down
27 changes: 27 additions & 0 deletions welcometestimonials.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,33 @@
</head>

<body>
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i>&nbsp; Return to Home</a>
<style>
.home-nav a{
z-index: 666;
text-decoration: none;
height: 50px;
width: 250px;
color: black;
font-size: 1.25rem;
position: absolute;
top: 20px;
left: 40px;
background-color: rgba(255,255,255,0.6);
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
transition: all 0.4s ease;
}
.home-nav a:hover{
transform: scale(1.02);
background-color:#fff;
color: black;
}
</style>
</div>
<div class="gtranslate_wrapper"></div>
<script>
window.gtranslateSettings = {
Expand Down

0 comments on commit 0313886

Please sign in to comment.