Hello दोस्तो आज हम आर्टिकल या वेबसाइट पेज में <h1> tag , <p> tag और <br> tag का उपयोग करना सीखेंगे।
<h1> tag का उपयोग heading के लिए किया जाता है।
<p> tag का उपयोग Paragraph के लिए किया जाता है।
<br> tag का उपयोग Line break के लिए किया जाता है।
<!DOCTYPE html>
<html>
<head>
<title> Heading, Paragraph and Line break Example</title>
</head>
<body>
<h1> this is 1st heading example. </h1>
<h2> this is 2nd heading example. </h2>
<p> This 1st Paragraph example. </p>
<p> This is 2nd Paragraph example. </p>
<p> This is 3rd Paragraph and line break <br>
example. <br>
</p>
<p> This is 4th Paragraph and line break <br>
example. </p>
<p> This is 5th Paragraph example. </p>
</body>
</html>
</html>
Input Html code:-
Output web page:-
0 टिप्पणियाँ