Mailing List Html Codes

I need a right alignment html code that works?
I am trying to put a mailing list subscribe form on the right side of my webpage, but I can’t get it to go to the right. When I try <*center> it goes to the center, but when I try <*right> (of course the * is not in it) it wont go to the right. Anyone know how to fix this?
the problem is that it’s not text, it’s a form. It is showing up on the left side of the screen when it should be on the right, and we have tried a lot of different things. The mailing list form is complete it’s just on the wrong side of the page.
Style the form tag with a left margin enough to push it to the right where you want it. Being in a email list, you need to keep styling and coding simple as the MIME type doesn’t handle some HTML/CSS very well.
Could even try:
float: right;
Or, try using the CSS property “absolute positioning”:
position: absolute;
top: YYpx;
right: XXpx;
Ron
Create A Sign In Page For Your Website