Is there a way to align the name and address on the same line, with the address positioned on the right and the name on the left? Currently, the address is appearing on a separate line from the name. How can I resolve this issue? Here is the provided code for reference:
<p>
<span id="name">First Last</span>
<span id="address">123 Address Rd.</span>
</p>
#name{
font-size:18px;
float:left;
color:white;
padding-top:30px;
}
#address{
float:left;
font-size:12px;
padding-left:400px;
color:white;
width:300px;
}