Skip to content

Commit

Permalink
Merge pull request #59 from PiyushhBansal/addfooter
Browse files Browse the repository at this point in the history
Added footer
  • Loading branch information
codingkatty authored Oct 13, 2024
2 parents 6475aec + ea1f939 commit 0db7844
Show file tree
Hide file tree
Showing 6 changed files with 402 additions and 5 deletions.
35 changes: 34 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,40 @@ <h2 class="about-h2">Contact Us</h2>

</div>
</div>

<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>Math 4 Python</h3>
<p>Enhance your Python skills while solving math-focused challenges. Learn, code, and improve through interactive lessons with real-time feedback.</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +123 456 7890</p>
</div>

<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="challenge.html">Challenge</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>

<div class="footer-section social">
<h3>Follow Us</h3>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>

<div class="footer-bottom">
<p>&copy; 2024 Math 4 Python. All Rights Reserved.</p>
</div>
</footer>

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

Expand Down
35 changes: 34 additions & 1 deletion challenge.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,40 @@ <h3>Challenge Description</h3>
</section>
</div>
</div>

<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>Math 4 Python</h3>
<p>Enhance your Python skills while solving math-focused challenges. Learn, code, and improve through interactive lessons with real-time feedback.</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +123 456 7890</p>
</div>

<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="challenge.html">Challenge</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>

<div class="footer-section social">
<h3>Follow Us</h3>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>

<div class="footer-bottom">
<p>&copy; 2024 Math 4 Python. All Rights Reserved.</p>
</div>
</footer>

<script src="script.js"></script>
</body>
</html>
35 changes: 34 additions & 1 deletion faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,40 @@ <h2><i class="fas fa-question-circle"></i> Frequently Asked Questions</h2>

</div>
</div>

<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>Math 4 Python</h3>
<p>Enhance your Python skills while solving math-focused challenges. Learn, code, and improve through interactive lessons with real-time feedback.</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +123 456 7890</p>
</div>

<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="challenge.html">Challenge</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>

<div class="footer-section social">
<h3>Follow Us</h3>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>

<div class="footer-bottom">
<p>&copy; 2024 Math 4 Python. All Rights Reserved.</p>
</div>
</footer>

<script src="script.js"></script>
</body>
</html>
35 changes: 34 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,40 @@ <h2> Start learning Today!</h2>
<a href="learn.html" class="cta-button">Get Started</a>
</div>
</div>

<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>Math 4 Python</h3>
<p>Enhance your Python skills while solving math-focused challenges. Learn, code, and improve through interactive lessons with real-time feedback.</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +123 456 7890</p>
</div>

<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="challenge.html">Challenge</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>

<div class="footer-section social">
<h3>Follow Us</h3>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>

<div class="footer-bottom">
<p>&copy; 2024 Math 4 Python. All Rights Reserved.</p>
</div>
</footer>

<script src="script.js"></script>
</body>
</html>
35 changes: 35 additions & 0 deletions learn.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,41 @@ <h3>Lesson Progress</h3>
<button id="lesson-reset-btn" class="reset-btn">Reset Progress</button>
</div>
</div>

<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>Math 4 Python</h3>
<p>Enhance your Python skills while solving math-focused challenges. Learn, code, and improve through interactive lessons with real-time feedback.</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +123 456 7890</p>
</div>

<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="challenge.html">Challenge</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>

<div class="footer-section social">
<h3>Follow Us</h3>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>

<div class="footer-bottom">
<p>&copy; 2024 Math 4 Python. All Rights Reserved.</p>
</div>
</footer>

<script src="script.js"></script>
</body>
</html>
Loading

0 comments on commit 0db7844

Please sign in to comment.