+ 2
how can I put the link in right or left of the page ? with out use <p align="right or left ><\p> because it makes other line and I did not want that ?!
4 Answers
+ 4
<a style="float: right;" href="#">My link</a>
And if by "line" you mean the link text has an underline, just add this to style:
text-decoration: none;
+ 1
<span class="any-name"></span> and then in stylesheet any-name { float: left; }
0
try a span tag instead of a p tag
0
I try it doesn't work !