-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintxed.HTML
More file actions
389 lines (336 loc) · 14.2 KB
/
Copy pathintxed.HTML
File metadata and controls
389 lines (336 loc) · 14.2 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<meta name='viewport' content='width=device-width, initial-scale=1'/><!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>أفضل 20 موقعًا لتحويل النص إلى كود برمجة</title>
<meta name="description" content="اكتشف 20 موقعًا لتحويل النص إلى كود برمجة بمختلف اللغات. أدوات فعالة لتطوير الويب والبرمجة.">
<meta name="keywords" content="تحويل النص إلى كود, أفضل مواقع برمجة, أدوات تطوير الويب, تحويل النص إلى كود برمجي">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- بيانات منظمة (Schema Markup) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "أفضل 20 موقعًا لتحويل النص إلى كود برمجة",
"url": "https://yourwebsite.com",
"description": "اكتشف 20 موقعًا لتحويل النص إلى كود برمجة بمختلف اللغات. أدوات فعالة لتطوير الويب والبرمجة."
}
</script>
<style>
/* التصميم العام */
body {
font-family: 'Tajawal', sans-serif;
background: linear-gradient(135deg, #6a11cb, #2575fc);
margin: 0;
padding: 20px;
color: #333;
}
.container {
max-width: 1200px;
margin: 20px auto;
background: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
}
h1 {
text-align: center;
color: #2575fc;
font-size: 2.5rem;
margin-bottom: 30px;
}
/* شريط البحث */
.search-bar {
margin-bottom: 30px;
text-align: center;
}
.search-bar input {
width: 100%;
max-width: 500px;
padding: 10px 20px;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 25px;
font-size: 1rem;
background: rgba(255, 255, 255, 0.8);
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-bar input:focus {
border-color: #2575fc;
box-shadow: 0 0 10px rgba(37, 117, 252, 0.3);
outline: none;
}
/* بطاقات المواقع */
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card h3 {
margin: 0 0 10px;
color: #2575fc;
}
.card p {
margin: 0 0 15px;
color: #666;
}
.card a {
display: inline-block;
padding: 10px 20px;
background: #2575fc;
color: white;
border-radius: 5px;
text-decoration: none;
transition: background 0.3s ease;
}
.card a:hover {
background: #1a5bbf;
}
/* قسم التعليقات */
.comments-section {
margin-top: 50px;
padding: 20px;
background: white;
border-radius: 10px;
}
.comment-form {
margin-bottom: 30px;
}
.comment-form input,
.comment-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 5px;
}
.comment-form button {
padding: 10px 20px;
background: #2575fc;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
.comment-form button:hover {
background: #1a5bbf;
}
.comment-list {
max-height: 400px;
overflow-y: auto;
}
.comment {
background: #f8f9fa;
padding: 15px;
border-radius: 5px;
margin-bottom: 15px;
animation: fadeIn 0.5s ease;
}
.comment strong {
color: #2575fc;
}
.comment small {
display: block;
margin-top: 5px;
color: #888;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="container">
<h1>أفضل 20 موقعًا لتحويل النص إلى كود برمجة 🚀</h1>
<!-- شريط البحث -->
<div class="search-bar">
<input type="text" id="searchInput" placeholder="ابحث عن موقع...">
</div>
<!-- قائمة المواقع (20 موقعًا) -->
<div class="card-container" id="cardContainer">
<!-- الموقع 1 -->
<div class="card" data-category="web">
<h3>CodePen</h3>
<p>أشهر منصة لتجربة أكواد الويب مباشرة.</p>
<a href="https://codepen.io" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 2 -->
<div class="card" data-category="web">
<h3>JSFiddle</h3>
<p>منصة لتجربة أكواد JavaScript وHTML وCSS.</p>
<a href="https://jsfiddle.net" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 3 -->
<div class="card" data-category="python">
<h3>Replit</h3>
<p>يدعم العديد من لغات البرمجة والتعاون في الوقت الفعلي.</p>
<a href="https://replit.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 4 -->
<div class="card" data-category="web">
<h3>CodeSandbox</h3>
<p>مثالي لتطوير تطبيقات الويب باستخدام React وVue.</p>
<a href="https://codesandbox.io" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 5 -->
<div class="card" data-category="web">
<h3>Glitch</h3>
<p>يتيح إنشاء تطبيقات ويب وتعديلها مباشرة في المتصفح.</p>
<a href="https://glitch.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 6 -->
<div class="card" data-category="javascript">
<h3>StackBlitz</h3>
<p>يدعم تطوير تطبيقات Angular وReact وVue بسرعة.</p>
<a href="https://stackblitz.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 7 -->
<div class="card" data-category="python">
<h3>Python Tutor</h3>
<p>تصور تنفيذ كود البايثون خطوة بخطوة.</p>
<a href="https://pythontutor.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 8 -->
<div class="card" data-category="dart">
<h3>DartPad</h3>
<p>منصة لتجربة أكواد لغة Dart.</p>
<a href="https://dartpad.dev" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 9 -->
<div class="card" data-category="sql">
<h3>SQL Fiddle</h3>
<p>منصة لتجربة أكواد SQL مباشرة.</p>
<a href="http://sqlfiddle.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 10 -->
<div class="card" data-category="programming">
<h3>LeetCode Playground</h3>
<p>منصة لحل مشاكل البرمجة وتجربة الأكواد.</p>
<a href="https://leetcode.com/playground" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 11 -->
<div class="card" data-category="web">
<h3>JS Bin</h3>
<p>منصة لتجربة أكواد JavaScript وHTML وCSS.</p>
<a href="https://jsbin.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 12 -->
<div class="card" data-category="web">
<h3>Codeanywhere</h3>
<p>بيئة تطوير متكاملة في المتصفح.</p>
<a href="https://codeanywhere.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 13 -->
<div class="card" data-category="programming">
<h3>Ideone</h3>
<p>منصة لتجربة أكواد بأكثر من 60 لغة برمجة.</p>
<a href="https://ideone.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 14 -->
<div class="card" data-category="programming">
<h3>JDoodle</h3>
<p>يدعم أكثر من 70 لغة برمجة.</p>
<a href="https://www.jdoodle.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 15 -->
<div class="card" data-category="programming">
<h3>Programiz</h3>
<p>منصة لتعليم البرمجة وتجربة الأكواد.</p>
<a href="https://www.programiz.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 16 -->
<div class="card" data-category="programming">
<h3>OneCompiler</h3>
<p>يدعم أكثر من 50 لغة برمجة.</p>
<a href="https://onecompiler.com" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 17 -->
<div class="card" data-category="programming">
<h3>Paiza.IO</h3>
<p>منصة لتجربة أكواد بأكثر من 20 لغة برمجة.</p>
<a href="https://paiza.io" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 18 -->
<div class="card" data-category="web">
<h3>W3Schools Tryit</h3>
<p>منصة لتجربة أكواد HTML وCSS وJavaScript.</p>
<a href="https://www.w3schools.com/tryit" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 19 -->
<div class="card" data-category="java">
<h3>Codiva</h3>
<p>منصة لتجربة أكواد Java وC++.</p>
<a href="https://www.codiva.io" target="_blank">زيارة الموقع</a>
</div>
<!-- الموقع 20 -->
<div class="card" data-category="programming">
<h3>Runnable</h3>
<p>منصة لتجربة أكواد بأكثر من 10 لغات برمجة.</p>
<a href="https://runnable.io" target="_blank">زيارة الموقع</a>
</div>
</div>
<!-- قسم التعليقات -->
<div class="comments-section">
<h2>آراء المستخدمين 💬</h2>
<form class="comment-form" id="commentForm">
<input type="text" placeholder="اسمك" required>
<textarea placeholder="تعليقك..." rows="4" required></textarea>
<button type="submit">إرسال التعليق</button>
</form>
<div class="comment-list" id="commentList">
<!-- التعليقات تظهر هنا -->
</div>
</div>
</div>
<script>
// وظيفة البحث
const searchInput = document.getElementById('searchInput');
const cards = document.querySelectorAll('.card');
searchInput.addEventListener('input', () => {
const searchTerm = searchInput.value.toLowerCase();
cards.forEach(card => {
const title = card.querySelector('h3').textContent.toLowerCase();
const description = card.querySelector('p').textContent.toLowerCase();
if (title.includes(searchTerm) || description.includes(searchTerm)) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
});
// إدارة التعليقات
const commentForm = document.getElementById('commentForm');
const commentList = document.getElementById('commentList');
commentForm.addEventListener('submit', (e) => {
e.preventDefault();
const name = e.target[0].value;
const text = e.target[1].value;
const comment = document.createElement('div');
comment.className = 'comment';
comment.innerHTML = `
<strong>${name}</strong>
<p>${text}</p>
<small>${new Date().toLocaleString()}</small>
`;
commentList.prepend(comment);
e.target.reset();
});
</script>
</body>
</html>