In this DaddyDev lesson, Ryan E. Hamilton has a little fun teaching the kiddos about line breaks, or the <BR> tag!
He also lets distiguishes the <BR> from other HTML Elements because it is NOT a container. It is an empty tag (i.e. it doesn’t have an opening and closing tag).
Enjoy! 8)
Sample Code
<html> 	 	<head> 	</head>  	<body> 		This is line 1<br> 		This is line 2<br> 		This is line 3<br> 		This is line 4<br>and 5 	</body> 	 </html>Code View
Browser View
 

