<p>Every</p>
<p>Paragraph</p>
<p>Breaks</p>
<p>But <a href="">there</a> can be <a href="">more than</a> one <a href="">link</a> in a paragraph.</p>
/*
If we were to inspect the elements we would see that the paragraph and anchor elements have these default display styles
Break the line
p{
display: block;
}
Dont Break the line
a{
display: inline;
}
*/
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.