Skip to content

Commit

Permalink
Merge pull request #129 from khd33j/feature
Browse files Browse the repository at this point in the history
Fix the file structure
  • Loading branch information
codingkatty authored Oct 31, 2024
2 parents 18b6221 + a5be33c commit 5066376
Show file tree
Hide file tree
Showing 17 changed files with 40 additions and 40 deletions.
File renamed without changes.
File renamed without changes
34 changes: 17 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,32 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math 4 Python - Learn and Challenge Your Math Skills</title>
<meta name="description"
content="A platform to learn mathematical concepts for Python programming and engage in coding challenges.">
<meta name="keywords" content="math, python, learning, challenges, programming">
<link rel="icon" href="Untitled design1.ico" type="image/svg+xml">
<link rel="stylesheet" href="styles.css">
<title>Math 4 Python - Learn and Challenge Your Math Skills</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>

<body id="home">
<div class="navbar">
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="learn.html">Learn</a>
<a href="challenge.html">Challenge</a>
<a href="faq.html">FAQs</a>
<a href="https://magicmath.co/" class="active">Home</a>
<a href="pages/about.html">About</a>
<a href="pages/learn.html">Learn</a>
<a href="pages/challenge.html">Challenge</a>
<a href="pages/faq.html">FAQs</a>
</div>
<div class="theme-toggle-wrapper">
<button style="cursor: pointer;" id="theme-toggle">
<i class="fas fa-sun"></i>
<i class="fas fa-moon"></i>
</button>
</div>
<a class="logo" href="index.html"><img src="logonew.svg" width="40"></a>
<a class="logo" href="https://magicmath.co/"><img src="images/logo.svg" width="40"></a>
</div>

<div class="content content-home">
Expand Down Expand Up @@ -119,7 +119,7 @@ <h3>Mentorship</h3>
<div class="call-to-action">
<h2>Start learning Today!</h2>
<p>Ready to dive into the world of math and Python? Click below to get started!</p>
<a href="learn.html" class="cta-button">Get Started</a>
<a href="pages/learn.html" class="cta-button">Get Started</a>
</div>
</div>

Expand All @@ -136,12 +136,12 @@ <h3>Math 4 Python</h3>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a class="link-element" href="index.html">Home</a></li>
<li><a class="link-element" href="about.html">About</a></li>
<li><a class="link-element" href="learn.html">Learn</a></li>
<li><a class="link-element" href="challenge.html">Challenge</a></li>
<li><a class="link-element" href="feedback.html">Feedback</a></li>
<li><a class="link-element" href="faq.html">FAQs</a></li>
<li><a class="link-element" href="https://magicmath.co/">Home</a></li>
<li><a class="link-element" href="pages/about.html">About</a></li>
<li><a class="link-element" href="pages/learn.html">Learn</a></li>
<li><a class="link-element" href="pages/challenge.html">Challenge</a></li>
<li><a class="link-element" href="pages/feedback.html">Feedback</a></li>
<li><a class="link-element" href="pages/faq.html">FAQs</a></li>
</ul>
</div>

Expand All @@ -161,7 +161,7 @@ <h3>Follow Us</h3>
</footer>

<button onclick="topFunction()" id="nav-top"><i class="material-icons">arrow_upward</i></button>
<script src="script.js"></script>
<script src="scripts/script.js"></script>

</body>

Expand Down
Binary file removed logonew.ico
Binary file not shown.
Binary file removed newlogo.ico
Binary file not shown.
14 changes: 7 additions & 7 deletions about.html → pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>About Math 4 Python</title>
<link rel="shortcut icon" href="Untitled design1.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="hamburger_menu.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="../styles/styles.css">
<link rel="stylesheet" href="../styles/hamburger_menu.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
Expand Down Expand Up @@ -117,9 +117,9 @@

<body>
<div class="navbar">
<a class="logo" href="index.html"><img src="logonew.svg" width="40"></a>
<a class="logo" href="../index.html"><img src="../images/logo.svg" width="40"></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="../index.html">Home</a>
<a href="about.html" class="active">About</a>
<a href="learn.html">Learn</a>
<a href="challenge.html">Challenge</a>
Expand Down Expand Up @@ -202,7 +202,7 @@ <h3>Math 4 Python</h3>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://magicmath.co/">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>
Expand All @@ -229,7 +229,7 @@ <h3>Follow Us</h3>
<i class="material-icons">arrow_upward</i>
</button>

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

<script>
let mybutton = document.getElementById("nav-top");
Expand Down
14 changes: 7 additions & 7 deletions challenge.html → pages/challenge.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math 4 Python - Challenges</title>
<link rel="shortcut icon" href="Untitled design1.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="hamburger_menu.css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="../styles/styles.css">
<link rel="stylesheet" href="../styles/hamburger_menu.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
Expand All @@ -19,9 +19,9 @@
<body id="challenge">

<div class="navbar">
<a class="logo" href="index.html"><img src="logonew.svg" width="40"></a>
<a class="logo" href="https://magicmath.co/"><img src="../images/logo.svg" width="40"></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="https://magicmath.co/">Home</a>
<a href="about.html">About</a>
<a href="learn.html">Learn</a>
<a href="challenge.html" class="active">Challenge</a>
Expand Down Expand Up @@ -102,7 +102,7 @@ <h3>Math 4 Python</h3>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://magicmath.co/">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>
Expand Down Expand Up @@ -130,7 +130,7 @@ <h3>Follow Us</h3>
<button onclick="topFunction()" id="nav-top"><i class="material-icons">arrow_upward</i></button>

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

<script>
let mybutton = document.getElementById("nav-top");
Expand Down
14 changes: 7 additions & 7 deletions faq.html → pages/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Math 4 Python - FAQs</title>
<link rel="shortcut icon" href="Untitled design1.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="hamburger_menu.css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="../styles/styles.css">
<link rel="stylesheet" href="../styles/hamburger_menu.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
Expand All @@ -18,9 +18,9 @@

<body id="faq">
<div class="navbar">
<a class="logo" href="index.html"><img src="logonew.svg" width="40"></a>
<a class="logo" href="https://magicmath.co/"><img src="../images/logo.svg" width="40"></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="https://magicmath.co/">Home</a>
<a href="about.html">About</a>
<a href="learn.html">Learn</a>
<a href="challenge.html">Challenge</a>
Expand Down Expand Up @@ -194,7 +194,7 @@ <h3>Math 4 Python</h3>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://magicmath.co/">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>
Expand Down Expand Up @@ -222,7 +222,7 @@ <h3>Follow Us</h3>
<span class="material-icons">arrow_upward</span>
</button>

<script src="script.js"></script>
<script src="../scripts/script.js"></script>
<script>
const mybutton = document.getElementById("nav-top");
window.onscroll = () => {
Expand Down
4 changes: 2 additions & 2 deletions feedback.html → pages/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math4Python Feedback Form</title>
<link rel="stylesheet" href="feedback.css">
<link rel="stylesheet" href="../styles/feedback.css">
</head>

<body>
Expand Down Expand Up @@ -38,7 +38,7 @@ <h2>Feedback Form</h2>
<div id="responseMessage" class="response-message"></div>
</div>

<script src="feedback.js"></script>
<script src="../scripts/feedback.js"></script>

</body>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5066376

Please sign in to comment.