HTML paragraphs are representing
with the <p> tag and End with </p>
HTML Break line are represent with <br
/> or <br>(html 5 does not need empty element to closed) tag, and the
element with no content is known is Empty element.
Example:
<p>This is a paragraph.
</p>
Notpad++ View (html code)
<!DOCTYPE html>
<html>
<head>
<title>This is a Paragraph</title>
</head>
<body>
<h1>GOAL;</h1>
<p>
To
find the aggregate (course) crushing value under gradually applied
compressive load. Which pass from 1.5mm.
IS
sieve and retained on 10mm. Is sieve.<br /> <!----this is line break code--->
</p>
<h1>SAMPLING;</h1>
<p>
Course
Aggregates passing on 12.5mm IS Sieve and retained on 10mm IS sieve. <br />
</p>
The
sample should be dried at 100 to 110°C in Oven for a period of not less than
4 hours.<br />
</p>
The sample should be cooled at room
temperature.
</p>
</body>
</html>
|
Browser View