No. The second <p> ends the first paragraph, hence the secod paragraph
does not get centered. If you want both paragraphs to be centered, use:
<p align = "center">First
<p align = "center">Second</p>
Or alternatively, (but in my opinion usually less good):
<div align = "center">
<p>First
<p>Second
</div>
Abigail