-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasic2.html
More file actions
90 lines (66 loc) · 2.55 KB
/
Copy pathbasic2.html
File metadata and controls
90 lines (66 loc) · 2.55 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="أساسيات لغة ترميز النص الفائق اتش.تي.إم.إل | تصحيح صفحة كامبربوت"/>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="../favicon.png">
<title>HTMLVerse | الأساسيات</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a class="red" href="./index.html#2">X</a>
<h1>أساسيات اتش.تي.إم.إل</h1>
</header>
<main>
<!-- BASIC 2 -->
<div class="box">
<div class="sub-title">
<h2>٢. تصحيح صفحة كامبربوت</h2>
<span class="hint">مختبر</span>
<p>في هذا المختبر، سوف تساعد كامبربوت في العثور على الأخطاء في الكود الخاص به وإصلاحها.</p>
</div>
<section>
<h3>صفحة كامبربوت :</h3>
<h4>كود خاطئ :</h4>
<div class="errorcode">
<pre><code><span>error code <br></span>
<h1>مرحبا من كامبربوت !</h1>
<heading2>نبذة عني</heading2>
<pp>اسمي كامبربوت وأنا أحب تعلم أشياء جديدة.</pp>
<h3>الخلفية والاهتمامات<h3/>
<pp>أستمتع بحل الألغاز.</pp>
</code></pre>
</div>
<h4>الحل :</h4>
<div class="sourcecode">
<pre><span>code <br></span><code>
<h1>مرحبا من كامبربوت !</h1>
<h2>نبذة عني</h2>
<p>اسمي كامبربوت وأنا أحب تعلم أشياء جديدة.</p>
<h3>الخلفية والاهتمامات</h3>
<p>أستمتع بحل الألغاز.</p>
</code></pre>
</div>
<h4>معاينة :</h4>
<div class="preview" role="presentation">
<h1>مرحبا من كامبربوت !</h1>
<h2>نبذة عني</h2>
<p>اسمي كامبربوت وأنا أحب تعلم أشياء جديدة.</p>
<h3>الخلفية والاهتمامات</h3>
<p>أستمتع بحل الألغاز.</p>
</div>
</section>
</div>
<!-- Pages -->
<div class="page-nav">
<a class="prev" href="./basic1.html">→ السابق</a>
<a class="next" href="./basic3.html">التالي ←</a>
</div>
</main>
</body>
</html>