Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved footer #633

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions aboutus.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,17 +310,12 @@ <h2>Quick Links</h2>
<li><a href="Contributors/contributor.html">Contributors</a></li>
</ul>
</div>
<div class="footer-section contact-form">
<h2>Feedback Form</h2>
<form action="#" method="post">
<input type="email" name="email" class="text-input contact-input"
placeholder="Your email address...">
<textarea name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">
<i class="fas fa-envelope"></i>
Send
</button>
</form>
<div class="footer-section links">
<h2>Feedback?</h2>
<ul>
<li><a href="feedback.html" target="_blank">Click here</a></li>
</ul>

</div>
</div>
<div class="footer-bottom">
Expand Down
67 changes: 67 additions & 0 deletions feedback.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
body {
font-family: Arial, sans-serif;
background-color: #f4c9c9;
margin: 0;
padding: 0;
}
.container {
width: 50%;
margin: 50px auto;
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
text-align: center;
color: #333;
}
h5 {
text-align: center;
color: #333;
}
label {
font-weight: bold;
display: block;
margin-bottom: 5px;
}
input, textarea, select {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 4px;
border: 1px solid #ccc;
}
button {

color: white;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
font-size: 16px;
background: linear-gradient(to right, #ff3527, #fb5283, #ffd700);
}
button:hover {
background-color: #f3bebe;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
footer a {
color: #5cb85c;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.feedback a {
color: white;
}
40 changes: 40 additions & 0 deletions feedback.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">

<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback page</title>
<link rel="stylesheet" href="feedback.css">
</head>

<body>

<div class="container" id="feedback">
<h1>Feedback Form</h1>
<h5>We value your feedback!!</h5>
<form action="/submit-feedback" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email id" required>

<label for="rating">How would you rate your experience?</label>
<select id="rating" name="rating" required>

<option value="excellent">Excellent</option>
<option value="good">Good</option>
<option value="average">Average</option>
<option value="poor">Poor</option>
</select>

<label for="feedback">Feedback:</label>
<textarea id="feedback" name="feedback" rows="5" placeholder="write a feedback..." required></textarea>

<button type="submit">Submit Feedback</button>
</form>
</div>
</body>
</html>
22 changes: 9 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<link rel="stylesheet" href="./popup/popup.css" />
<link rel ="stylesheet" href="./Loader/Loader.css"/>
<link rel="manifest" href="/manifest.json">

</head>

<body>
Expand Down Expand Up @@ -640,19 +641,14 @@ <h2>Legal Links</h2>
<li><a href="#">Copyright Notice</a></li>
</ul>
</div>

<div class="footer-section contact-form">
<h2>Feedback Form</h2>
<form action="#" method="post">
<input type="email" name="email" class="text-input contact-input"
placeholder="Your email address...">
<textarea name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">
<i class="fas fa-envelope"></i>
Send
</button>
</form>
</div>
<div class="footer-section links">
<h2>Feedback?</h2>
<ul>
<li><a href="feedback.html" target="_blank">Click here</a></li>
</ul>

</div>

</div>
<div class="footer-bottom">
<p><a href="PrivacyPolicy/PrivacyPolicy.html">© 2024 GamingTools | All Rights Reserved</a></p>
Expand Down
Loading