HTML में
टैग का उपयोग सिंगल एंटर लाइन ब्रेक सेट करने के लिए किया जाता है। आइए अब HTML में br टैग को लागू करने के लिए एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is a demo text! The next paragraph will appear after two line breaks.</p> <br><br> <p>We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. The next line will appear after a single line break.</p><br> <p>This is a demo text!</p> </body> </html>
आउटपुट
उपरोक्त उदाहरण में, हमने
टैग का उपयोग किया है।
टैग का दो बार उपयोग करके अगले पैराग्राफ के लिए दो लाइन ब्रेक यहां सेट किए गए हैं -
<p>This is a demo text! The next paragraph will appear after two line breaks.</p> <br><br>
अब, केवल एक बार
टैग का उपयोग करके अगली पंक्ति के लिए केवल एक ब्रेक सेट किया गया है -
<p>We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. The next line will appear after a single line break.</p><br> <p>This is a demo text!</p>