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

Fixed the Footer Section BUG of CONTACT US Page #835

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
68 changes: 57 additions & 11 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,20 +75,66 @@
<div class="visme_d" data-title="Contact Form" data-url="4d6yepek-contact-form" data-domain="forms" data-full-page="false" data-min-height="500px" data-form-id="96782"></div>
<script src="https://static-bundles.visme.co/forms/vismeforms-embed.js"></script>

<!-- Footer Section Starts Here -->
<section class="footer" id="footer">
<div class="share">
<a href="#" class="fab fa-facebook-f" aria-label="Facebook"></a>
<a href="#" class="fab fa-twitter" aria-label="Twitter"></a> <!-- Corrected to use proper class -->
<a href="#" class="fab fa-instagram" aria-label="Instagram"></a>
<a href="#" class="fab fa-linkedin" aria-label="LinkedIn"></a>
<a href="#" class="fab fa-pinterest" aria-label="Pinterest"></a>
<!-- Footer Section Starts Here -->

<!-- <div class="footercolor"> -->
<section class="footer" id="footer" style="background-color: black ">
<hr> <!-- Horizontal line -->

<!-- Parent div wrapping all footer content -->
<div class="footer-row">

<!-- Child div for 'About Scruter' -->
<div class="footer-column">
<h3>About ArcticDelights </h3>
<p>At Arctic Delights, we believe that every scoop of ice cream should be a masterpiece. We handpick the finest, sustainably sourced ingredients to craft flavors that not only cool you down but also take your taste buds on an unforgettable journey. </p>
</div>

<!-- Child div for 'Quick Links' -->
<div class="footer-column">
<h3>Quick Links</h3>
<a href="#">About Us</a>
<a href="#">Our Team</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Our Contributors</a>
</div>

<!-- Child div for 'Help Desk' -->
<div class="footer-column">
<h3>Help Desk</h3>
<a href="#">Help Center</a>
<a href="#">FAQ</a>
<a href="#">Contact Us</a>
<a href="#">Support</a>
</div>

<!-- Child div for 'Follow Us' -->
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a> <!-- Updated X icon -->
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-pinterest"></i></a>
</div>
</div>

</div>

<!-- Footer credit -->
<div class="credit">
<p>created by <span>Dohina</span> | all rights reserved</p>
<p>created by Dohina</p>
<br><br>
</div>
</section>
<!-- Footer Section Ends Here -->
</section>
<!-- </div> -->

<!-- Footer Section Ends Here -->

<!-- JavaScript File -->
<script src="script.js"></script>

<script src="preloader.js"></script>

Expand Down