इस लेख में हम 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 को देख सकते है।
हम आशा करते है की आपको आपके सवाल How to define an unordered list in HTML? का जवाब मिल गया होगा।
सबसे ज्यादा पढ़ा जाने वाला लेख👇🏻
- How to define an unordered list in HTML?
- How do I insert a row in a table?
- How do you define an unordered list in html with example
- How to define a variable in HTML?
- How to define a video or movie in HTML? with source code