HTML Tutorial

Line Break Element

The break element creates a single line break. Unlike the paragraph, no empty line is inserted.

Attributes

None exist for this tag.

Example

Code:

<html>
	...
	<body>
		<p>Hello!<br />
		Welcome to Learn With Me!</p>
	</body>
	...
</html>

Screen Output:

Hello!
Welcome to Learn With Me!