How to define an unordered list in HTML?

इस लेख में हम HTML में unordered list define करना सीखेंगे। हम आपके सवाल How to define an unordered list in HTML? का भी जवाब देंगे।

How to define an unordered list in HTML?

हम आपको इसके लिए एक code दे रहे है जिसके मदद से आप आसानी से HTML में unordered list define कर सकते है।

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Unordered List Example</title>
</head>
<body>

<h2>My Favorite Fruits</h2>
<ul>
    <li>Apple</li>
    <li>Banana</li>
    <li>Cherry</li>
    <li>Grapes</li>
</ul>

</body>
</html>

Preview 👇🏻

My Favorite Fruits

  • Apple
  • Banana
  • Cherry
  • Grapes

How to define an unordered list in HTML in details

इसको अच्छे से समझने के लिए निचे दिए video को देख सकते है।

Source: Explore – The Knowledge Tv
हम आशा करते है की आपको आपके सवाल How to define an unordered list in HTML? का जवाब मिल गया होगा। 

सबसे ज्यादा पढ़ा जाने वाला लेख👇🏻

Leave a Reply

Your email address will not be published. Required fields are marked *