HTML Paragraphs and Breaks

Example: HTML Paragraphs and Breaks


	<!DOCTYPE html>
	<html lang="en">
	<head>
		<meta charset="UTF-8">
		<title>HTML Paragraphs and Breaks</title>
	</head>
	<body>
		<h1>HTML Paragraphs and Breaks</h1>
		
		<h2>This is the second largest heading</h2>
		
		<p>This is a paragraph.</p>
		
		<br><br>
		
		<p>br tags add a line break, but should not be needed often.  Paragraphs are better to use.
		Paragraphs are naturally double-spaced lines, but CSS can be used to modify all formatting, 
		e.g. line spacing, character spacing, margins, fonts, etc.</p>
		
		<h6>This is the smallest heading.</h6>
	</body>
	</html>
	

Run it now