EZ

EZNotes

🎯 Aim

To create an HTML webpage that displays information about Types of Languages with definitions, examples, and detailed descriptions using proper HTML structure.

🛠️ What You Need

  • Notepad++ or any text editor
  • A web browser to view the result
  • Basic understanding of HTML headings, paragraphs, and lists

📖 Introduction

Languages can be classified in many ways. In this practical, we will explore the classification of languages based on:

  • Geographical Spread: International, National, Regional, Local
  • Nature of Communication: Formal, Informal, Technical, Slang
  • Programming Languages: Low-level, High-level, Scripting, Compiled
  • Human Languages: Mother tongue, Official, Foreign, Second language
💡 Tip: Use proper HTML structure — <h1> for the main title, <h2> for category headings, <h3> for subcategories, <p> for descriptions, and <ul> or <ol> for listing examples.

📊 Preview of the Output

🗣️ Types of Languages

🌍 Classification by Geographical Spread

🌐 International Language

A language that is widely used across multiple countries and continents. Example: English, Spanish, French.

🏛️ National Language

A language that has official status in a country. Example: Urdu (Pakistan), Hindi (India), Chinese (China).

🏘️ Regional Language

A language spoken in a particular region or province of a country. Example: Punjabi, Sindhi, Pashto.

🏡 Local Language

A language spoken in a specific local community or village. Example: Brahui, Shina, Balti.

📚 Classification by Nature of Communication

📝 Formal Language

Used in official, academic, and professional settings. Example: Legal documents, official letters.

💬 Informal Language

Used in casual, everyday conversations. Example: Chatting with friends, family conversations.

💻 Technical Language

Used in specific fields like science, technology, and medicine. Example: Medical terminology, programming jargon.

💻 Programming Languages

📟 Low-level Languages

Close to machine code, difficult to understand. Example: Assembly language, Machine code.

📱 High-level Languages

Close to human language, easier to read and write. Example: Python, Java, C++, C#.

📜 Scripting Languages

Interpreted languages used for automating tasks. Example: JavaScript, PHP, Ruby, Python.

⚙️ Compiled Languages

Translated into machine code before execution. Example: C, C++, Rust, Go.

📝 Step‑by‑Step: Creating the HTML Page

Step 1: Open Notepad++ and Write the Code

  1. Launch Notepad++.
  2. Set the language to HTML (Language → H → HTML).
  3. Write the following simplified HTML code:
<!-- Practical 67: Types of Languages --> <html> <head> <title>Types of Languages</title> </head> <body> <h1>🗣️ Types of Languages</h1> <!-- ===== CLASSIFICATION BY GEOGRAPHICAL SPREAD ===== --> <h2>🌍 Classification by Geographical Spread</h2> <h3>🌐 International Language</h3> <p> An international language is a language that is widely used across multiple countries and continents. It serves as a common medium of communication between people from different linguistic backgrounds. </p> <p> Examples: English, Spanish, French, Arabic, Mandarin Chinese. </p> <h3>🏛️ National Language</h3> <p> A national language is a language that has official status in a country. It is used by the government, in education, and for official purposes. </p> <p> Examples: Urdu (Pakistan), Hindi (India), Chinese (China), English (USA, UK), French (France). </p> <h3>🏘️ Regional Language</h3> <p> A regional language is a language spoken in a particular region or province of a country. It may not have official status nationwide but is widely used in that region. </p> <p> Examples: Punjabi, Sindhi, Pashto (in Pakistan); Basque (in Spain); Catalan (in Spain). </p> <h3>🏡 Local Language</h3> <p> A local language is a language spoken in a specific local community, village, or small area. These are often not widely known outside the community. </p> <p> Examples: Brahui (Balochistan), Shina (Gilgit-Baltistan), Balti (Gilgit-Baltistan), various indigenous languages. </p> <!-- ===== CLASSIFICATION BY NATURE OF COMMUNICATION ===== --> <h2>📚 Classification by Nature of Communication</h2> <h3>📝 Formal Language</h3> <p> Formal language is used in official, academic, and professional settings. It follows strict grammar rules and is often used in legal documents, academic papers, and official speeches. </p> <p> Examples: Legal documents, official letters, academic essays, business reports. </p> <h3>💬 Informal Language</h3> <p> Informal language is used in casual, everyday conversations. It is less structured and may include slang, colloquialisms, and contractions. </p> <p> Examples: Chatting with friends, family conversations, text messages, social media posts. </p> <h3>💻 Technical Language</h3> <p> Technical language is used in specific fields like science, technology, medicine, and engineering. It includes specialized terminology that is often not understood by people outside that field. </p> <p> Examples: Medical terminology (diagnosis, prognosis), programming jargon (algorithm, API, framework), engineering terms (load, torque, stress). </p> <!-- ===== PROGRAMMING LANGUAGES ===== --> <h2>💻 Programming Languages</h2> <h3>📟 Low-level Languages</h3> <p> Low-level languages are close to machine code and are difficult for humans to read and understand. They provide direct control over hardware but require more effort to write and debug. </p> <p> Examples: Assembly language, Machine code, Binary code. </p> <h3>📱 High-level Languages</h3> <p> High-level languages are close to human language and are easier to read, write, and understand. They are portable across different platforms and are widely used for software development. </p> <p> Examples: Python, Java, C++, C#, JavaScript, PHP, Ruby, Swift. </p> <h3>📜 Scripting Languages</h3> <p> Scripting languages are interpreted languages that are used for automating tasks, web development, and system administration. They are often embedded within other applications. </p> <p> Examples: JavaScript, PHP, Python, Ruby, Perl, Bash. </p> <h3>⚙️ Compiled Languages</h3> <p> Compiled languages are translated into machine code by a compiler before execution. This makes them faster and more efficient but platform-dependent. </p> <p> Examples: C, C++, Rust, Go, Swift, Kotlin. </p> <!-- ===== SUMMARY ===== --> <h2>📌 Summary</h2> <p> In summary, languages can be classified in multiple ways. Geographical spread categorizes languages from international to local levels. Nature of communication distinguishes between formal, informal, and technical language. Programming languages are classified as low-level, high-level, scripting, or compiled languages. Understanding these categories helps us appreciate the diversity and purpose of different languages. </p> </body> </html>

Step 2: Save the File

  1. Go to File → Save As… (or press Ctrl+Shift+S).
  2. Choose a location (e.g., Desktop).
  3. Name the file: "types_of_languages.html" or "practical67.html".
  4. In "Save as type", select All types (*.*).
  5. Click Save.

Step 3: Open in Browser

  1. Navigate to the folder where you saved the file.
  2. Double‑click the types_of_languages.html file.
  3. It will open in your default web browser.
  4. You will see the complete webpage with all language types and their detailed descriptions.

📊 HTML Elements Used in This Practical

HTML Element Purpose Example
<h1> to <h3> Headings for structure Main title, category, subcategory headings
<p> Paragraphs for descriptions Definitions and explanations
<ul> and <li> Unordered lists for examples Listing examples of each language type
<strong> Bold text for emphasis Highlighting key terms

📊 Classification Summary Table

Category Types Examples
Geographical Spread International, National, Regional, Local English, Urdu, Punjabi, Brahui
Nature of Communication Formal, Informal, Technical Legal documents, Chatting, Medical terminology
Programming Languages Low-level, High-level, Scripting, Compiled Assembly, Python, JavaScript, C

📊 Common Mistakes to Avoid

Mistake Why It's Wrong Correct Way
Using only <p> without headings No structure, hard to read Use <h1>, <h2>, <h3> for hierarchy
Not using lists for examples Hard to scan Use <ul> with <li> for examples
Mixing different classifications in one section Confusing organization Keep each classification type in its own section
Forgetting to close tags Invalid HTML Always close tags properly

📊 Observations

  • Using headings (<h1>, <h2>, <h3>) creates a clear hierarchy of information.
  • Paragraphs (<p>) are used for detailed definitions and explanations.
  • Unordered lists (<ul>) are perfect for listing examples of each language type.
  • Using bold text (<strong>) helps emphasize important terms.
  • Proper HTML structure improves readability and accessibility.
  • Grouping similar types together makes the content more organized and easy to understand.

✅ Result

You have successfully:

  • Created an HTML webpage that explains Types of Languages.
  • Used proper HTML structure with headings, paragraphs, and lists.
  • Included detailed descriptions and examples for each language type.
  • Formatted the content for clear reading and understanding.
  • Viewed the complete webpage in a browser.
📌 Important: Good HTML structure — using headings, paragraphs, and lists — makes your content more readable, organized, and accessible. Always plan your content structure before writing the code!
💡 Next Steps: Try adding more categories like Sign Languages, Constructed Languages (Esperanto, Klingon), or Endangered Languages. You can also add images, tables, or links to make the page more interactive!

🎯 مقصد

ایک HTML ویب صفحہ بنانا جو زبانوں کی اقسام کے بارے میں تعریفوں، مثالوں، اور تفصیلی وضاحتوں کے ساتھ معلومات ظاہر کرتا ہے۔

🛠️ آپ کو کیا چاہیے

  • Notepad++ یا کوئی بھی ٹیکسٹ ایڈیٹر
  • نتیجہ دیکھنے کے لیے ایک ویب براؤزر
  • HTML ہیڈنگز، پیراگرافز، اور فہرستوں کی بنیادی معلومات

📖 تعارف

زبانوں کو کئی طریقوں سے درجہ بند کیا جا سکتا ہے۔ اس عملی میں، ہم درجہ بندی کو دریافت کریں گے:

  • جغرافیائی پھیلاؤ: بین الاقوامی، قومی، علاقائی، مقامی
  • مواصلات کی نوعیت: رسمی، غیر رسمی، تکنیکی
  • پروگرامنگ زبانیں: نچلی سطح، اعلیٰ سطح، اسکرپٹنگ، کمپائل شدہ
💡 مشورہ: مناسب HTML ڈھانچہ استعمال کریں — مرکزی عنوان کے لیے <h1>، زمرہ ہیڈنگز کے لیے <h2>، ذیلی زمرہ جات کے لیے <h3>، وضاحتوں کے لیے <p>، اور مثالوں کی فہرست کے لیے <ul> یا <ol> استعمال کریں۔

📊 آؤٹ پٹ کا پیش منظر

🗣️ زبانوں کی اقسام

🌍 جغرافیائی پھیلاؤ کے لحاظ سے درجہ بندی

🌐 بین الاقوامی زبان

ایک ایسی زبان جو متعدد ممالک اور براعظموں میں وسیع پیمانے پر استعمال ہوتی ہے۔ مثال: انگریزی، ہسپانوی، فرانسیسی۔

🏛️ قومی زبان

ایک ایسی زبان جسے کسی ملک میں سرکاری حیثیت حاصل ہو۔ مثال: اردو (پاکستان)، ہندی (بھارت)، چینی (چین)۔

🏘️ علاقائی زبان

ایک ایسی زبان جو کسی ملک کے کسی خاص علاقے یا صوبے میں بولی جاتی ہے۔ مثال: پنجابی، سندھی، پشتو۔

🏡 مقامی زبان

ایک ایسی زبان جو کسی مخصوص مقامی کمیونٹی یا گاؤں میں بولی جاتی ہے۔ مثال: براہوی، شینا، بلتی۔

📚 مواصلات کی نوعیت کے لحاظ سے درجہ بندی

📝 رسمی زبان

سرکاری، تعلیمی، اور پیشہ ورانہ ترتیبات میں استعمال ہوتی ہے۔ مثال: قانونی دستاویزات، سرکاری خطوط۔

💬 غیر رسمی زبان

عام، روزمرہ کی بات چیت میں استعمال ہوتی ہے۔ مثال: دوستوں کے ساتھ بات چیت، خاندانی گفتگو۔

💻 تکنیکی زبان

سائنس، ٹیکنالوجی، اور طب جیسے مخصوص شعبوں میں استعمال ہوتی ہے۔ مثال: طبی اصطلاحات، پروگرامنگ کی اصطلاحات۔

💻 پروگرامنگ زبانیں

📟 نچلی سطح کی زبانیں

مشین کوڈ کے قریب، سمجھنا مشکل۔ مثال: اسمبلی زبان، مشین کوڈ۔

📱 اعلیٰ سطح کی زبانیں

انسانی زبان کے قریب، پڑھنا اور لکھنا آسان۔ مثال: پائتھن، جاوا، سی++، سی#۔

📜 اسکرپٹنگ زبانیں

تشریح شدہ زبانیں جو کاموں کو خودکار کرنے کے لیے استعمال ہوتی ہیں۔ مثال: جاوا اسکرپٹ، پی ایچ پی، روبی، پائتھن۔

⚙️ کمپائل شدہ زبانیں

عمل درآمد سے پہلے مشین کوڈ میں ترجمہ کی جاتی ہیں۔ مثال: سی، سی++، رسٹ، گو۔

📝 مرحلہ وار: HTML صفحہ بنانا

پہلا قدم: Notepad++ کھولیں اور کوڈ لکھیں

  1. Notepad++ لانچ کریں۔
  2. زبان کو HTML پر سیٹ کریں (Language → H → HTML)۔
  3. نیچے دیا گیا آسان HTML کوڈ لکھیں:
<!-- Practical 67: Types of Languages --> <html> <head> <title>Types of Languages</title> </head> <body> <h1>🗣️ زبانوں کی اقسام</h1> <!-- ===== GEOGRAPHICAL SPREAD ===== --> <h2>🌍 جغرافیائی پھیلاؤ کے لحاظ سے درجہ بندی</h2> <h3>🌐 بین الاقوامی زبان</h3> <p> بین الاقوامی زبان ایک ایسی زبان ہے جو متعدد ممالک اور براعظموں میں وسیع پیمانے پر استعمال ہوتی ہے۔ یہ مختلف لسانی پس منظر کے لوگوں کے درمیان مواصلات کا ایک مشترکہ ذریعہ ہے۔ </p> <p> مثالیں: انگریزی، ہسپانوی، فرانسیسی، عربی، مینڈارن چینی۔ </p> <h3>🏛️ قومی زبان</h3> <p> قومی زبان ایک ایسی زبان ہے جسے کسی ملک میں سرکاری حیثیت حاصل ہو۔ یہ حکومت، تعلیم، اور سرکاری مقاصد کے لیے استعمال ہوتی ہے۔ </p> <p> مثالیں: اردو (پاکستان)، ہندی (بھارت)، چینی (چین)، انگریزی (امریکہ، برطانیہ)، فرانسیسی (فرانس)۔ </p> <h3>🏘️ علاقائی زبان</h3> <p> علاقائی زبان ایک ایسی زبان ہے جو کسی ملک کے کسی خاص علاقے یا صوبے میں بولی جاتی ہے۔ اسے ملک بھر میں سرکاری حیثیت حاصل نہیں ہو سکتی لیکن اس علاقے میں بڑے پیمانے پر استعمال ہوتی ہے۔ </p> <p> مثالیں: پنجابی، سندھی، پشتو (پاکستان میں)؛ باسک (اسپین میں)؛ کاتالان (اسپین میں)۔ </p> <h3>🏡 مقامی زبان</h3> <p> مقامی زبان ایک ایسی زبان ہے جو کسی مخصوص مقامی کمیونٹی، گاؤں، یا چھوٹے علاقے میں بولی جاتی ہے۔ یہ اکثر کمیونٹی سے باہر زیادہ مشہور نہیں ہوتی۔ </p> <p> مثالیں: براہوی (بلوچستان)، شینا (گلگت بلتستان)، بلتی (گلگت بلتستان)، مختلف مقامی زبانیں۔ </p> <!-- ===== NATURE OF COMMUNICATION ===== --> <h2>📚 مواصلات کی نوعیت کے لحاظ سے درجہ بندی</h2> <h3>📝 رسمی زبان</h3> <p> رسمی زبان سرکاری، تعلیمی، اور پیشہ ورانہ ترتیبات میں استعمال ہوتی ہے۔ یہ سخت گرامر کے قواعد کی پیروی کرتی ہے اور اکثر قانونی دستاویزات، تعلیمی مقالوں، اور سرکاری تقریروں میں استعمال ہوتی ہے۔ </p> <p> مثالیں: قانونی دستاویزات، سرکاری خطوط، تعلیمی مضامین، کاروباری رپورٹس۔ </p> <h3>💬 غیر رسمی زبان</h3> <p> غیر رسمی زبان عام، روزمرہ کی بات چیت میں استعمال ہوتی ہے۔ یہ کم منظم ہوتی ہے اور اس میں سلیگ، بول چال، اور اختصاص شامل ہو سکتے ہیں۔ </p> <p> مثالیں: دوستوں کے ساتھ بات چیت، خاندانی گفتگو، ٹیکسٹ میسجز، سوشل میڈیا پوسٹس۔ </p> <h3>💻 تکنیکی زبان</h3> <p> تکنیکی زبان سائنس، ٹیکنالوجی، طب، اور انجینئرنگ جیسے مخصوص شعبوں میں استعمال ہوتی ہے۔ اس میں خصوصی اصطلاحات شامل ہوتی ہیں جو اکثر اس شعبے سے باہر کے لوگ نہیں سمجھتے۔ </p> <p> مثالیں: طبی اصطلاحات (تشخیص، پیش گوئی)، پروگرامنگ کی اصطلاحات (الگورتھم، API، فریم ورک)، انجینئرنگ کی اصطلاحات (بوجھ، ٹارک، دباؤ)۔ </p> <!-- ===== PROGRAMMING LANGUAGES ===== --> <h2>💻 پروگرامنگ زبانیں</h2> <h3>📟 نچلی سطح کی زبانیں</h3> <p> نچلی سطح کی زبانیں مشین کوڈ کے قریب ہوتی ہیں اور انسانوں کے لیے پڑھنا اور سمجھنا مشکل ہوتی ہیں۔ یہ ہارڈویئر پر براہ راست کنٹرول فراہم کرتی ہیں لیکن لکھنے اور ڈیبگ کرنے میں زیادہ محنت درکار ہوتی ہے۔ </p> <p> مثالیں: اسمبلی زبان، مشین کوڈ، بائنری کوڈ۔ </p> <h3>📱 اعلیٰ سطح کی زبانیں</h3> <p> اعلیٰ سطح کی زبانیں انسانی زبان کے قریب ہوتی ہیں اور پڑھنے، لکھنے، اور سمجھنے میں آسان ہوتی ہیں۔ یہ مختلف پلیٹ فارمز پر پورٹیبل ہوتی ہیں اور سافٹ ویئر ڈیولپمنٹ کے لیے بڑے پیمانے پر استعمال ہوتی ہیں۔ </p> <p> مثالیں: پائتھن، جاوا، سی++، سی#، جاوا اسکرپٹ، پی ایچ پی، روبی، سوئفٹ۔ </p> <h3>📜 اسکرپٹنگ زبانیں</h3> <p> اسکرپٹنگ زبانیں تشریح شدہ زبانیں ہیں جو کاموں کو خودکار کرنے، ویب ڈیولپمنٹ، اور سسٹم ایڈمنسٹریشن کے لیے استعمال ہوتی ہیں۔ یہ اکثر دوسری ایپلی کیشنز میں سرایت کرتی ہیں۔ </p> <p> مثالیں: جاوا اسکرپٹ، پی ایچ پی، پائتھن، روبی، پرل، باش۔ </p> <h3>⚙️ کمپائل شدہ زبانیں</h3> <p> کمپائل شدہ زبانیں کو ایک کمپائلر کے ذریعے عمل درآمد سے پہلے مشین کوڈ میں ترجمہ کیا جاتا ہے۔ یہ انہیں تیز اور زیادہ موثر بناتی ہیں لیکن پلیٹ فارم پر منحصر ہوتی ہیں۔ </p> <p> مثالیں: سی، سی++، رسٹ، گو، سوئفٹ، کوٹلن۔ </p> <!-- ===== SUMMARY ===== --> <h2>📌 خلاصہ</h2> <p> خلاصہ یہ کہ زبانوں کو کئی طریقوں سے درجہ بند کیا جا سکتا ہے۔ جغرافیائی پھیلاؤ زبانوں کو بین الاقوامی سے مقامی سطح تک درجہ بند کرتا ہے۔ مواصلات کی نوعیت رسمی، غیر رسمی، اور تکنیکی زبان میں فرق کرتی ہے۔ پروگرامنگ زبانیں کو نچلی سطح، اعلیٰ سطح، اسکرپٹنگ، یا کمپائل شدہ زبانوں کے طور پر درجہ بند کیا جاتا ہے۔ ان زمروں کو سمجھنا مختلف زبانوں کے تنوع اور مقصد کی تعریف کرنے میں ہماری مدد کرتا ہے۔ </p> </body> </html>

دوسرا قدم: فائل محفوظ کریں

  1. File → Save As… (یا Ctrl+Shift+S) پر جائیں۔
  2. ایک مقام منتخب کریں (مثلاً Desktop)۔
  3. فائل کا نام رکھیں: "types_of_languages.html" یا "practical67.html"۔
  4. "Save as type" میں All types (*.*) منتخب کریں۔
  5. Save پر کلک کریں۔

تیسرا قدم: براؤزر میں کھولیں

  1. اس فولڈر میں جائیں جہاں آپ نے فائل محفوظ کی تھی۔
  2. types_of_languages.html فائل پر ڈبل‑کلک کریں۔
  3. یہ آپ کے ڈیفالٹ براؤزر میں کھل جائے گی۔
  4. آپ کو تمام زبانوں کی اقسام اور ان کی تفصیلی وضاحتوں کے ساتھ مکمل ویب صفحہ نظر آئے گا۔

📊 اس عملی میں استعمال ہونے والے HTML عناصر

HTML عنصر مقصد مثال
<h1> سے <h3> ڈھانچے کے لیے ہیڈنگز مرکزی عنوان، زمرہ، ذیلی زمرہ ہیڈنگز
<p> وضاحتوں کے لیے پیراگراف تعریفیں اور وضاحتیں
<ul> اور <li> مثالوں کے لیے غیر ترتیب شدہ فہرست ہر زبان کی قسم کی مثالیں درج کرنا
<strong> زور دینے کے لیے بولڈ ٹیکسٹ کلیدی اصطلاحات کو نمایاں کرنا

📊 درجہ بندی کا خلاصہ جدول

زمرہ اقسام مثالیں
جغرافیائی پھیلاؤ بین الاقوامی، قومی، علاقائی، مقامی انگریزی، اردو، پنجابی، براہوی
مواصلات کی نوعیت رسمی، غیر رسمی، تکنیکی قانونی دستاویزات، بات چیت، طبی اصطلاحات
پروگرامنگ زبانیں نچلی سطح، اعلیٰ سطح، اسکرپٹنگ، کمپائل شدہ اسمبلی، پائتھن، جاوا اسکرپٹ، سی

📊 عام غلطیاں جن سے بچنا ہے

غلطی یہ کیوں غلط ہے صحیح طریقہ
صرف <p> کا استعمال بغیر ہیڈنگز کے کوئی ڈھانچہ نہیں، پڑھنا مشکل درجہ بندی کے لیے <h1>، <h2>، <h3> استعمال کریں
مثالوں کے لیے فہرستوں کا استعمال نہ کرنا اسکین کرنا مشکل مثالوں کے لیے <ul> کو <li> کے ساتھ استعمال کریں
مختلف درجہ بندیوں کو ایک سیکشن میں ملانا مبہم تنظیم ہر درجہ بندی کی قسم کو اپنے سیکشن میں رکھیں
ٹیگز بند کرنا بھول جانا غلط HTML ہمیشہ ٹیگز کو صحیح طریقے سے بند کریں

📊 مشاہدات

  • ہیڈنگز (<h1>، <h2>، <h3>) کا استعمال معلومات کی ایک واضح درجہ بندی بناتا ہے۔
  • پیراگرافز (<p>) تفصیلی تعریفوں اور وضاحتوں کے لیے استعمال ہوتے ہیں۔
  • غیر ترتیب شدہ فہرست (<ul>) ہر زبان کی قسم کی مثالیں درج کرنے کے لیے بہترین ہے۔
  • بولڈ ٹیکسٹ (<strong>) کا استعمال اہم اصطلاحات کو نمایاں کرنے میں مدد کرتا ہے۔
  • مناسب HTML ڈھانچہ پڑھنے کی اہلیت اور رسائی کو بہتر بناتا ہے۔
  • ایک جیسی اقسام کو ایک ساتھ گروپ کرنا مواد کو مزید منظم اور سمجھنے میں آسان بناتا ہے۔

✅ نتیجہ

آپ نے کامیابی سے:

  • زبانوں کی اقسام کی وضاحت کرنے والا ایک HTML ویب صفحہ بنایا۔
  • ہیڈنگز، پیراگرافز، اور فہرستوں کے ساتھ مناسب HTML ڈھانچہ استعمال کیا۔
  • ہر زبان کی قسم کے لیے تفصیلی وضاحتیں اور مثالیں شامل کیں۔
  • مواد کو واضح پڑھنے اور سمجھنے کے لیے فارمیٹ کیا۔
  • مکمل ویب صفحہ کو براؤزر میں دیکھا۔
📌 اہم: اچھا HTML ڈھانچہ — ہیڈنگز، پیراگرافز، اور فہرستوں کا استعمال — آپ کے مواد کو مزید پڑھنے کے قابل، منظم، اور قابل رسائی بناتا ہے۔ کوڈ لکھنے سے پہلے ہمیشہ اپنے مواد کے ڈھانچے کی منصوبہ بندی کریں!
💡 اگلے اقدامات: مزید زمرے شامل کرنے کی کوشش کریں جیسے اشاروں کی زبانیں، مصنوعی زبانیں (ایسپیرانٹو، کلنگون)، یا خطرے سے دوچار زبانیں۔ آپ صفحہ کو مزید انٹرایکٹو بنانے کے لیے تصاویر، جدول، یا لنکس بھی شامل کر سکتے ہیں!
⬅ Back to Practical Notebooks