how to write this sentence in the same line with a bulleted copyright symbol
"copyright .© 2015.All rights reserved"?
using code like this
<p>Copyright <li>%copy;</li> 2015.All rights reserved</p>
I expect it to be shown like this in the web browser:-
copyright .© 2015.All rights reserved
not like this:-
copyright
.©
2015.All rights reserved
Try this:
<p>Copyright •© 2015.All rights reserved</p>
Where •
is the html entity code for a bullet, and ©
is for the copyright symbol.