इस लेख में हम HTML का use करके किसी भी text में underline बनाना सीखेंगे। इसके साथ हम How to underline text in html using css का भी जवाब देंगे।
How to underline text in html using css
आइये तो अब हम इसको समझने का प्रयास करते है। किसी text को underline करने के भी एक से अधिक process है।
Using the text-decoration Property
यह एक CSS property है जिसका use HTML में किसी भी text में underline करने के लिए किया जाता है। आइये इसको example के माध्यम से समझने का प्रयास करते है।
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Underline Text Example by technalay </title> <style> .underline { text-decoration: underline; } </style> </head> <body> <p>This is <span class="underline">underlined text</span> using CSS.</p> </body> </html>
Using <u>the Tag
यह HTML का एक tag है जिसका use html में किसी भी text को underline करने के लिए किया जाता है। आइये इसको अच्छे समझने का प्रयास करते है।
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Underline Text Example by technalay </title> </head> <body> <p>This is <u>underlined text</u> using HTML.</p> </body> </html>
हम आशा करते है की आपको आपके सवाल How to underline text in html using css का जवाब मिल गया होगा।
सबसे ज्यादा पढ़ा जाने वाला आर्टिकल 👇🏻