Horizontal placement of radio buttons

Hey guys,

I can’t seem to figure out how to get radiobuttons to live up horizontal instead of vertically. Like for example,


<input type="radio" name="employmentDuration" value="&#38263;&#24037;"> &#38263;&#24037; <br />
<input type="radio" name="employmentDuration" value="&#33256;&#26178;&#24037;"> &#33256;&#26178;&#24037;

Will be displayed vertically with 2 radio buttons, how do I make

[radio button] 長工 [radio button] 臨時工?

Take out the <br />.

I recommend you read these:
Simple Tricks for More Usable Forms: Labels
Accessible HTML/XHTML Forms
Creating Accessible Forms

Shoot. I am an idiot. I realized, I had some floating going on with my input tags which was why it was acting all funny.

Thanks!