How to add a Copyright © Symbol in HTML
Table of Contents
Copyright symbols are found all over the web, usually at the footer.
They are used to convey to the user that the content they are viewing is copyrighted.
In this post, we'll learn how to add a copyright symbol to your website using HTML.
How to add a copyright symbol to your website using HTML
The easiest way to add a copyright symbol on your website is to use HTML entities.
HTML entities are special characters that are encoded in HTML.
They allow you to add special characters to your website without having to use a font that supports them.
The one for the copyright symbol is ©
.
Let's add a copyright symbol to our website:
HTML©
This will render as:
BASH©
For a more full copyright notice, you can do something like this:
HTML<div>Copyright © 2022</div>
This will render as:
HTML<div>Copyright © 2022</div>
As you can see, it's very easy to add a copyright symbol to your page using HTML.
Conclusion
In this post, we learned how to add a copyright symbol on your page using HTML entities.
Simply use the HTML entity ©
to render the copyright symbol wherever you want on your page.
Thanks for reading!
- Getting Started with TypeScript
- Getting Started with Svelte
- Create an RSS Reader in Node
- Git Tutorial: Learn how to use Version Control
- How to Serve Static Files with Nginx and Docker
- How to Set Up Cron Jobs in Linux
- How to deploy a Deno app using Docker
- How to deploy a MySQL Server using Docker
- Learn how to use v-model with a custom Vue component
- How to Scrape the Web using Node.js and Puppeteer
- Getting User Location using JavaScript's Geolocation API
- Using Push.js to Display Web Browser Notifications