programming-examples/html/Basics/Paragraph and line breaks.html

11 lines
318 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of Inserting Line Breaks in HTML</title>
</head>
<body>
<p>This is a paragraph <br> with line break.</p>
<p>This is <br>another paragraph <br> with line breaks.</p>
</body>
</html>