Programming Code Center(PCC)
[HTML]

(PCC)::[how-to-use-br-tag-to-break-line-in-html-language]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
<p>Hello<br />
You delivered your assignment on time.<br />
Thanks<br />
Mahnaz</p>
</body>
</html>

Output :

Line Break Example

Hello
You delivered your assignment on time.
Thanks
Mahnaz