Skip to content

Commit

Permalink
Merge pull request #957 from abhi200446/abhi
Browse files Browse the repository at this point in the history
icons added
  • Loading branch information
mansiruhil authored Oct 19, 2024
2 parents e9be12d + 1bdf303 commit c9ebb41
Showing 1 changed file with 52 additions and 33 deletions.
85 changes: 52 additions & 33 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -607,40 +607,59 @@ <h2>Contact Us</h2>
<!-- Quick Links Section -->
<div>
<ul style="list-style-type: none; padding: 0;">
<h3 style="font-size: 1.5rem; margin-bottom: 10px; color: #2980b9;">Quick
Links</h3>
<li><a href="about.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">About Us</a>
</li>
<li><a href="contact.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Contact Us</a>
</li>
<li><a href="privacy.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Privacy
Policy</a></li>
<li><a href="terms.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Terms of
Service</a>
</li>
<li><a href="sitemap.html" style="color: #000000;background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Site Map</a>
</li>
<!-- Add FAQ link here -->
<li><a href="#faq-section" style="color: #000000;background:none; cursor: pointer; text-decoration: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">FAQ</a></li>
<h3 style="font-size: 1.5rem; margin-bottom: 10px; color: #2980b9;">Quick Links</h3>
<li style="margin-bottom: 8px;">
<a href="home.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-home" style="margin-right: 12px; color: #000000;"></i> Home
</a>
</li>
<li style="margin-bottom: 8px;">
<a href="about.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-info-circle" style="margin-right: 12px; color: #000000;"></i> About Us
</a>
</li>
<li style="margin-bottom: 8px;">
<a href="contact.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-envelope" style="margin-right: 12px; color: #000000;"></i> Contact Us
</a>
</li>
<li style="margin-bottom: 8px;">
<a href="privacy.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-user-secret" style="margin-right: 12px; color: #000000;"></i> Privacy Policy
</a>
</li>
<li style="margin-bottom: 8px;">
<a href="terms.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-file-contract" style="margin-right: 12px; color: #000000;"></i> Terms of Service
</a>
</li>
<li style="margin-bottom: 8px;">
<a href="sitemap.html" style="color: #000000;background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-sitemap" style="margin-right: 12px; color: #000000;"></i> Site Map
</a>
</li>
<li>
<a href="#faq-section" style="color: #000000;background:none; cursor: pointer; text-decoration: none; display: flex; align-items: center;"
onmouseover="this.style.color='blue'; this.querySelector('i').style.color='blue';"
onmouseout="this.style.color='black'; this.querySelector('i').style.color='black';">
<i class="fas fa-question-circle" style="margin-right: 12px; color: #000000;"></i> FAQ
</a>
</li>
</ul>
</div>

<!-- Contact Information Section -->
<div>
<h3 style="font-size: 1.5rem; color: #2980b9;">Contact Info</h3>
<p style="color: #000;">123 Emergency Lane, Mumbai, India</p>
<a href="mailto:[email protected]" style="color: #000000; background:none; cursor: pointer;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">[email protected]</a>
</p>
<p style="color: #000000;">Phone: <a href="tel:+91-911-1234567" style="color: #000000; background: none;"
onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">+91-911-1234567</a></p>
</div>
</div>



<!-- Modified the looks of the social icons -->
Expand Down

0 comments on commit c9ebb41

Please sign in to comment.