OneCompiler

Assignment 1.2 Paragraphs and Line Breaks

220
<!DOCTYPE html>
<html>
  <head>
	  <title> 1.2 HTML: Paragraphs and Line Breaks </title>
	</head>
	<body>
		
		<!-- Part A: Using Paragraph Tags, write 1-2 sentences under each header. -->
		<h1> Header 1:  My Favorite Animal </h1>
		
		<h2> Header 2:  What I Like to do in my Free Time </h2>
		
		<h3> Header 3:  My Favorite Books </h3>
		
		<h4> Header 4:  My Favorite Subject </h4>
		
		<h5> Header 5:  YouTube Videos I Watch </h5>
		
		<h6> Header 6:  Food I Eat Often </h6>
		
		
		<!-- Use Line Break Tags to properly format these sections. -->
		<!-- Part B -->
		<p> A poem you see, Lacking line breaks for me, Oh imagine what I can be! </p>
		
		<!-- Part C -->
		<p> Sincerely, NAME SCHOOL </p>
		
	</body>

<!-- Do not remove following lines. They're used to test. -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://sites.webjam.org/grader/assignment1.2.js"></script>
</html>```