How to define a single line break in html with example

नमस्कार दोस्तों! इस लेख में हम How to define a single line break in html with example के बारे में बात करेंगे और इसे समझने का प्रयास करेंगे।

How to define a single line break in html with example

HTML में किसी भी single line को तोड़ कर दूसरे लाइन में लिखने के लिए <br> tag का use करते है। आइये इसे उदाहरण के जरिये समझने का प्रयास करते है।

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>How to define a single line break in html with example</title>
</head>
<body>
    <p>This is the first line.<br>This is the second line after a line break.</p>
</body>
</html>

हम आशा करते है की आपको आपके सवाल का जवाब मिल गया होगा। 

Free Notes PDF Download करने के लिए निचे दिए गए image को क्लिक करे।


इसे भी पढ़े 🚀

Leave a comment