I am trying to write an address on my website. Right now it's just centered, but I want to make the left side of the words align with each other, like on an envelope. What HTML or CSS code can I use to get that?
Here's my current HTML code:
<p id="center">text</p>
<p id="center">text 1</p>
<p id="center">text 2</p>
<p id="center">text 3</p>
Here's my current CSS code:
#center {text-align: center;}