-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
110 lines (104 loc) · 5.9 KB
/
contact.html
File metadata and controls
110 lines (104 loc) · 5.9 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Contact CLOS team for support, suggestions, or feedback. Get help with mathematical calculator issues, access documentation, and connect via email or GitHub.">
<meta name="keywords" content="CLOS contact, mathematical calculator support, help, documentation, user manual, GitHub, email support">
<meta name="author" content="CLOS Team">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://clos-mathematical-tool.replit.app/contact.html">
<meta property="og:title" content="Contact CLOS - Mathematical Calculator Support">
<meta property="og:description" content="Get help with CLOS mathematical calculator. Contact support, access documentation, and provide feedback.">
<meta property="og:image" content="https://clos-mathematical-tool.replit.app/images/logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://clos-mathematical-tool.replit.app/contact.html">
<meta property="twitter:title" content="Contact CLOS - Mathematical Calculator Support">
<meta property="twitter:description" content="Get help with CLOS mathematical calculator. Contact support, access documentation, and provide feedback.">
<meta property="twitter:image" content="https://clos-mathematical-tool.replit.app/images/logo.png">
<title>Contact CLOS - Mathematical Calculator Support & Help</title>
<link rel="canonical" href="https://clos-mathematical-tool.replit.app/contact.html">
<link rel="icon" type="image/png" href="images/icon.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<a href="index.html" title="Home"><img src="images/logo.png" alt="CLOS Logo" class="nav-logo"></a>
<div class="hamburger" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-links">
<a class="navLink" href="index.html" data-translate="nav_home">Home</a>
<a class="navLink" href="about.html" data-translate="nav_about">About</a>
<a class="navLink" href="features.html" data-translate="nav_features">Features</a>
<a class="navLink" href="contact.html" data-translate="nav_contact">Contact</a>
<a class="navLink cta" href="download.html" data-translate="nav_download">Download</a>
</div>
</nav>
<header class="hero compact">
<div class="hero-content">
<h1 data-translate="contact_title">Problems? Suggestions? Look here</h1>
</div>
</header>
<section class="contact">
<div class="contact-content">
<div class="contact-section">
<h2 data-translate="get_in_touch">Get in Touch</h2>
<p data-translate="contact_desc">Have questions, suggestions, or feedback? We'd love to hear from you!</p>
<div class="contact-info">
<div class="contact-item">
<h3 data-translate="email_support">Email Support</h3>
<p><a href="mailto:[email protected]" target="_blank">[email protected]</a></p>
</div>
<div class="contact-item">
<h3 data-translate="github_repo">GitHub Repository</h3>
<p><a href="https://github.com/happysmaran/CLOS/releases" target="_blank" data-translate="github_link_text">View Source & Releases</a></p>
</div>
</div>
</div>
<div class="contact-section">
<h2 data-translate="documentation">Documentation</h2>
<div class="documentation-info">
<div class="doc-item">
<h3 data-translate="user_manual">User Manual</h3>
<p data-translate="manual_desc">The current user manual is designed for the terminal version (0.11). A comprehensive manual for the GUI version is coming soon.</p>
<a href="https://github.com/happysmaran/CLOS/blob/main/CLOS%20User%20Manual.pdf" target="_blank" class="doc-link" data-translate="download_manual">Download Current Manual</a>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<p data-translate="copyright">© 2026 CLOS. All rights reserved.</p>
<div class="social-links">
<a href="https://github.com/happysmaran/CLOS/releases"><img src="images/github.png" target="_blank" height=25px alt="GitHub"></a>
<a href="mailto:[email protected]"><img src="images/email.png" target="_blank" height=25px alt="Email"></a>
</div>
</div>
</footer>
<script src="js/translations.js"></script>
<script>
function toggleMenu() {
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.classList.toggle('active');
navLinks.classList.toggle('active');
}
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.classList.remove('active');
navLinks.classList.remove('active');
});
});
</script>
</body>
</html>