-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Powered Math Problem Generator & Solver</title>
<link rel="icon" type="image/svg" href="logo.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<section>
<!-- Theme Toggle Button -->
<button id="theme-toggle">🌙 Dark Mode</button>
<div class="container head">
<h1>AI Math Problem Generator & Solver</h1>
<!-- Math Problem Generator Section -->
<div class="section problem">
<h2>Generate Math Problem</h2>
<button id="generate-problem" class="btn-primary">Generate Problem</button>
<div class="output-box" id="generated-problem" hidden></div>
</div>
<!-- Math Problem Solver Section -->
<div class="section solution">
<h2>Solve Math Problem</h2>
<textarea id="math-input" placeholder="Enter a math problem"></textarea>
<button id="solve-problem" class="btn-primary">Solve</button>
<div class="output-box" id="solution" hidden></div>
</div>
</div>
</section>
<footer>
<div class="footer-container">
<div class="copyrights">
<p>Version</p>
<p>2025 © Edition | Designed with ❤️ and code..</p>
</div>
<div class="social-apps">
<p>Social Apps</p>
<div class="icon-row">
<a href="https://x.com/VarunKOfficial" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com/Varun-Kumar-Code" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/itz_varun_official/" target="_blank" rel="noopener noreferrer"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/Varun-Kumar-in/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin-in"></i></a>
<a href="https://discord.com/channels/@me" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i></a>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.js"></script>
<script src="script.js"></script>
</body>
</html>