when i wrote ©
in my page it doesn't show the copyright symbol,
and show the point instead, just . it shows. maybe you know why? thanks
HTML is the language for describing the structure of Web pages. HTML gives authors the means to: Publish online documents with headings, text, tables, lists, photos, etc. Retrieve online information via hypertext links, at the click of a button.
HTML is perhaps one of the easiest front-end programming languages to master. So if you want to learn HTML, then go for it! With patience and practice, you'll learn to make the most of this popular language.
What you're looking at right now is HTML code, read and interpreted by your browser. But this doesn't make HTML a programming language. HTML is a type of markup language. It encapsulates, or “marks up” data within HTML tags, which define the data and describe its purpose on the webpage.
Put the copyright symbol in a <span>
tag and in your css use a font that works.
.copyright {
font-family: Arial,
"Helvetica Neue",
Helvetica,
sans-serif;
}
<span class="copyright">©</span>2007 Syom Industries
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With