I have a question about HTML, how do you align the text so that it always stays on the right side of the screen. I need to place a "Next" button and I want it on the lower-right hand part of the screen.
Printable View
I have a question about HTML, how do you align the text so that it always stays on the right side of the screen. I need to place a "Next" button and I want it on the lower-right hand part of the screen.
Either:
<div align=right>Your text</div>
or
<p align=right>Your text</div>
Ah, I was trying to use <font align=right>My Text Here</font>