-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
184 lines (148 loc) · 5.31 KB
/
help.html
File metadata and controls
184 lines (148 loc) · 5.31 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Help</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f4f8;
color: #333;
}
header {
background-color: #4f46e5;
color: white;
padding: 30px 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
font-size: 2.5em;
}
.container {
max-width: 900px;
margin: 40px auto;
padding: 0 20px;
}
.section {
background-color: white;
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
transition: 0.3s ease;
}
.section:hover {
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.section h2 {
color: #4f46e5;
margin-top: 0;
}
footer {
text-align: center;
padding: 20px;
font-size: 0.9em;
color: #777;
}
a {
color: #4f46e5;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
header h1 {
font-size: 2em;
}
.section {
padding: 20px;
}
}
</style>
</head>
<body>
<header>
<h1>Help & Support</h1>
<p>We're here to guide you through everything.</p>
</header>
<div class="container">
<div class="section">
<h2>Getting Started</h2>
<p>Learn how to this JDoodle Code Runner, Here is a tutorial to understand.
For more details you can visit JDoodle Docs.</p>
</div>
<!-- JDoodle Embed -->
<div class="jdoodle-container">
<div data-pym-src="https://www.jdoodle.com/embed/v1/9f87f51fb1918643"></div>
</div>
<!-- Help Guide -->
<div class="help-section">
<h2>💡 How to Use the Java Compiler</h2>
<p><strong>1. Write Java Code:</strong><br>
You can type or paste your Java code into the editor on above ⬆.</p>
<p><strong>2. Input (STDIN):</strong><br>
If your program uses <code>Scanner</code> to read input, enter your input values in the <strong>STDIN</strong> box below the code editor.</p>
<p><em>Example:</em> This code takes two numbers as input:</p>
<pre class="example-input">
5
10
</pre>
<p>This will produce the output:</p>
<pre class="example-input">
Sum: 15
</pre>
<p><strong>3. Program Arguments:</strong><br>
If your code uses command-line arguments via <code>String[] args</code>, enter those in the <strong>Arguments</strong> field.</p>
<p><strong>4. Output:</strong><br>
The output from your code will appear in the output section — this is the standard output (STDOUT).</p>
<hr>
<p style="font-size: 14px;">Need help? Contact support or check <a href="https://www.jdoodle.com/docs" target="_blank">JDoodle Docs</a>.</p>
</div>
</div>
<!-- JDoodle Embed Script -->
<script src="https://www.jdoodle.com/assets/jdoodle-pym.min.js" type="text/javascript"></script>
<div class="section">
<h2>❓ Frequently Asked Questions (FAQ)</h2>
<p>Here are answers to some common questions about <strong>Code-Space</strong>:</p>
<hr>
<h3>🔹 Q: What is Code-Space?</h3>
<p><strong>A:</strong> Code-Space is a free and open-source website that offers curated resources for developers — including daily tech news, free courses, books, project ideas, HTML cheat sheets, and roadmaps.</p>
<hr>
<h3>🔹 Q: Who can use Code-Space?</h3>
<p><strong>A:</strong> Anyone! Whether you're a complete beginner, a student, or a self-taught developer, Code-Space is designed for you.</p>
<hr>
<h3>🔹 Q: Do I need to install anything?</h3>
<p><strong>A:</strong> Nope! Code-Space is 100% front-end. You only need a web browser to run it. Just open <code>index.html</code> and you're good to go.</p>
<hr>
<h3>🔹 Q: Is Code-Space mobile-friendly?</h3>
<p><strong>A:</strong> Yes! The site is responsive and works on phones, tablets, and desktops.</p>
<hr>
<h3>🔹 Q: Can I contribute to Code-Space?</h3>
<p><strong>A:</strong> Definitely! Check out the <a href="Contributing">Contributing</a> page to learn how you can help improve the site.</p>
<hr>
<h3>🔹 Q: Will the content be updated regularly?</h3>
<p><strong>A:</strong> Yes. New resources, tech news, and improvements will be added often.</p>
<hr>
<h3>🔹 Q: Can I share this site with others?</h3>
<p><strong>A:</strong> Absolutely. It’s open for everyone! You can even fork the project and create your own version.</p>
<hr>
<h3>🔹 Q: Where can I report bugs or request features?</h3>
<p><strong>A:</strong> You can open an <strong>Issue</strong> on the <a href="https://github.com/amanbalara/Code-Space" target="_blank">GitHub repository</a> to report bugs or request features.</p>
<p>If your question isn't listed here, feel free to reach out or open an issue on GitHub!</p>
</div>
<div class="section">
<h2>Need More Help?</h2>
<p>You can reach out to us via <a href="mailto:connect.amanbalara@gmail.com">connect.amanbalara@gmail.com</a> or visit our <a href="#">Contact page</a>.</p>
</div>
</div>
<footer>
© 2025 YourWebsite. All rights reserved.
</footer>
</body>
</html>