i would liek to put the test in right hand, such as , "hello, this word in right hand ," what html code can do that? as I try the follow ,but it will become 2 line, I want all words on the same line, hello, <p align="right">this word in right hand </p>
using <p> will create a new paragraph. so "this word in right hand" will placed down after "hello". why put hello outside? you want like this right? <p align="right">hello, this word in right hand </p> or?
You can text on right side by using widget in that you get option of text. So write your text in the box and get published.
right it's working. i thought of using div but i think float just do it nicely. <p style="float:right;">this word is in the right</p> <p style="float:left;">this word is in the left</p>
Or, you can use table: <table> <tr><td align="left">Something on the left</td><td>something on the right</td></tr> </table>
You can also use CSS: #right { text-align:right; } #left { text-align:left; } <div id='right'>Hi, I'm on the right side</div><div id='left'>Hi, I'm on the left side</div>