when i wrote ©
in my page it doesn\'t show the copyright symbol,
and show the point instead, just . it shows. maybe you know w
Add
<meta charter="utf-8">
In The heading tag and you could also add
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Most likely — because the font you are using has a broken copyright character in it.
Without a test case it is hard to make a guess beyond that.
Put the copyright symbol in a <span>
tag and in your css use a font that works.
<span class="copyright">©</span>2007 Syom Industries
CSS:
.copyright {
font-family: Arial,
"Helvetica Neue",
Helvetica,
sans-serif;
}
Adding a
before the ©
works for me as well, even with the Helvetica Neue
font.