Paragraph vs Line Break

Example A: Enter and spaces inside <p>

Penny McIntire Department of Computer Science Some University This looks like multiple lines in the code, but the browser will display it as one paragraph.


Example B: Using multiple <p> tags

Penny McIntire

Department of Computer Science

Some University

This creates extra spacing because each line is a separate paragraph.


Example C: Correct solution using <br> inside one paragraph

Penny McIntire
Department of Computer Science
Some University
This keeps lines without large paragraph spacing.