1.HTML Paragraphs
<!DOCTYPE html>
<html>
<head><title>html paragraphs</title></head>
<body>
<p>Hello Goodmorning.</p>
<p>Hello Goodafternoon.</p>
<p>Hello Goodnight.</p>
</body>
</html>
<html>
<head>
<title>html paragraphs</title>
</head>
<body
<p>
This paragraph
contains a lot of lines
in the source code,
but the browser
ignores it.
</p>
<p>
This paragraph
contains a lot of spaces
in the source code,
but the browser
ignores it.
</p>
<p>
The number of lines in a paragraph depends on the size of the browser window. If you resize the browser window, the number of lines in this paragraph will change.
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head><title>horizantal rules</title></head>
<body>
<h1>Hello <br>Goodmorning</h1>
<p>Have a nice day.</p>
<hr>
<h2>Hello goodafternoon</h2>
<p>Have a nice day.</p>
<hr>
<h2>Hello Goodnight</h2>
<p>Have a sweet dreams.</p>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<p>The pre tag preserves both spaces and line breaks:</p>
<pre>
Bajarangi software solutions.
Bajarangi software solutions.
Bajarangi software solutions.
Bajarangi software solutions..
</pre>
</body>
</html>