0

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  
mplungjan
  • 169,008
  • 28
  • 173
  • 236

3 Answers3

1

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.

Sawant
  • 4,321
  • 1
  • 27
  • 30
0

I am not sure why you need the bullet, but if you need it, use another unicode char https://www.compart.com/en/unicode/U+2022 :

copyright • © 2015. All rights reserved

or using entities:

copyright &bull; &copy; 2015. All rights reserved

copyright • © 2015. All rights reserved

More bullets: https://www.alt-codes.net/bullet_alt_codes.php

mplungjan
  • 169,008
  • 28
  • 173
  • 236
0

I don't really understand what you're asking but from what i understand you want to know how to add a bullet before the copyright symbol. Adding • between two elements is one way to do that. I'm not adding it as code because SO interprets it as markdown lol. If I have understood your question wrong please correct me and edit your question too! I think you have to remove the <li> element and put a <span> instead.

mplungjan
  • 169,008
  • 28
  • 173
  • 236
need_to_know_now
  • 328
  • 1
  • 2
  • 13