How to define a possible link break in HTML? with source code

इस लेख में हम How to define a possible link break in HTML? के बारे में पढ़ेंगे इसके साथ में हम इसका code भी दे रहे होंगे।

How to define a possible link break in HTML?

HTML में किसी भी लाइन को break करने के लिए <br> tag का use किया जाता है। इसका use करने से कोई sentence बिच से जहा से आप इस tag का use करते है वह से cut होक दूसरे नए सिरे से <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>Line Break Example</title>
</head>
<body>

<p>This is an example of a paragraph. <br> Here is a line break.</p>

<p>Another example: <br> This sentence starts on a new line.</p>

</body>
</html>

इसे आप किसी भी text editor में copy करके run करके देख सकते है।

How to define a possible word break in HTML?

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

<p>This is a very long word that might need to wrap to the next line<wbr>withoutbreaking</p>

</body>
</html>
By- Code Range
हम आशा करते है की आपको आपके सवाल How to define a possible link break in HTML? का जवाब मिल गया होगा। 

इसे भी पढ़े🚀

Leave a comment