How to Add a copyright symbol in HTML5

There are several ways to add a copyright symbol into your web page.

You can directly copy and paste it in: ©. you can also type it using <Alt>0169.

Can you use a HTML5 code? Of course! The copyright sign HTML5 code is: &copy;

Example:

Preview: © 2018 HowToMakeAwebsiteWithHtml.com
HTML5 code: <p>&copy; 2018 HowToMakeAwebsiteWithHtml.com<p>

Learn more

Decimal code:

&#169; (copyright symbol)
&#9400; (C inside circle)

Hex code:

&#xA9; (copyright symbol)
&#x24B8; (C inside circle)

The url of this article is:
http://www.listofallwebsites.com/how-to-add-a-copyright-symbol-in-html5/

HTML code for website link with a picture

I’ll show you how to make image hyperlinks.

This is an example of a HTML code for website link with a picture:

<a target=”_blank” href=”http://www.listofallwebsites.com”><img src=”http://www.listofallwebsites.com/pictures/2.jpg” border=”0″ alt=”The name of your picture”></a>

“http://www.listofallwebsites.com/pictures/2.jpg” is the location of your picture.