Search code examples
htmlcssampersandcopyright-display

How to write sentences including bulleted copyright symbol


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  

Solution

  • Try this:

    <p>Copyright &bull;&copy; 2015.All rights reserved</p>
    

    Where &bull; is the html entity code for a bullet, and &copy; is for the copyright symbol.