Skip to content
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
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ <h1>Welcome to the Web Development Quiz</h1>

</ul>
</div>
<section id="Feedback">
<div class="feedback">
<p>Looking forward to hearing from you!</p>
<p>Best regards, &#x1F60A;</p>
<a style="text-align: center;" href="mailto:[email protected]?subject=Feedback&body=Hi ,%0D%0A%0D%0AI would like to share the following feedback...%0D%0A" class="feedback-email-link">
Send Feedback via Email</a>
</div>


</section>
<footer>
<div class="footer-left">
<span>© <strong>Quiz Game</strong> - Built with ❤️ by Akshada Jadhav</span>
Expand Down
16 changes: 16 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,22 @@ button {
button:hover {
background-color: #45a049;
}
/*feedback*/
#Feedback {
background: linear-gradient(to right, #1f1c2c, #928dab);
color: #ffffff;
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
font-size: 14px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
border: 2px solid #c5b4ff;

}


/* Responsive footer */
Expand Down