Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

html: © doesn't show

Tags:

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

like image 894
Simon Avatar asked Apr 28 '10 16:04

Simon


People also ask

What is HTML used for?

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.

Is HTML easy to learn?

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.

Is HTML a coding?

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.


2 Answers

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">&copy;</span>2007 Syom Industries
like image 110
ghoppe Avatar answered Oct 10 '22 14:10

ghoppe


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.

like image 41
Quentin Avatar answered Oct 10 '22 14:10

Quentin