Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

How do I add the copyright symbol to my Web Page?

share|improve this question
1  
You don't need a link to your site in your question - it's not relevant. – paulmorriss May 14 '12 at 14:20

3 Answers

You type the character ©. The way you do that depends on your authoring environment. Using Windows, for example, you can use Alt 0169 if you cannot find a more convenient way.

You need to make sure that the character encoding of the page is properly declared, but you should do that anyway.

Even if you are using a legacy encoding like windows-1252 or iso-8859-1 and not the modern utf-8, the copyright sign © can be entered as such.

share|improve this answer
Hmm - why the downvotes, this is a perfectly valid answer. If you look at the unicode table, the copyright belongs to the Latin-1 table and that means, there should be no problem with using the character directly. – martinstoeckli May 14 '12 at 19:24
Yes this is at least equally as good an answer as the others. – DisgruntledGoat May 14 '12 at 19:40
I downvoted because if you use html 5 © displays as a ?. But © displays as expected. !DOCTYPE html> html> – Guy Thomas May 15 '12 at 11:00
@Guy Thomas, then your character encoding is wrong, or it has not been declared properly. It is useful to know this from a character about which you know how it should look like. One more reason for using the character itself. – Jukka K. Korpela May 15 '12 at 11:50
1  
I have learned a great deal from this. Here is my page. guy-sports.com/funny/funny_science_jokesa.htm While this page produces the problem, it is due to mal-formed utf-8 meta tag, which I must research. Thus I have reversed my down vote. – Guy Thomas May 15 '12 at 20:53
show 7 more comments

Use © or © The last one is more easier to remember. Disadvantage is that some exotic browser cant read it, so then u have to use the number.

share|improve this answer

Use © in your html and you get ©.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.