Inserting the Copyright Symbol in HTML pages

HTML supports special symbols that are not on your keyboard. The special symbol code for the copyright symbol © on HTML is &copy.  The code is defined by starting with a & (ampersand) and finishing with a ; (semicolon). An example code using the special symbol name would be as follows.

<p> &copy; 2009 website tutorial</p>

However, to ensure that there are no mishaps and you ALWAYS get the proper read from HTML documents, you should try to always use the  number code instead of the symbol code.   The number is &#169;  An example code using the special symbol number would be as follows.

<p> &#169; 2009 website design </p>

2 Responses to “Inserting the Copyright Symbol in HTML pages”

  1. crow poc  on September 5th, 2009

    so cool..
    thank’s for the info..

  2. andi  on June 14th, 2010

    kalau logo trade merk gimana? thanks


Leave a Reply