Website Copyright Generator

Copyright is used to preventing people from stealing content and images from your website. It also protects the rights of creatures of their own original works, such as literary, dramatic, musical, scripts, and artistic works.

When a website is created, the content on it is automatically protected by copyright law. The copyright notice usually has the copyright symbol (©), the name of the copyright owner, and the publication year. It might also mention the rights reserved by the copyright owner.

When a website has a copyright notice, it tells people that the content is protected and that the owner can protect their rights if someone tries to copy it. Some owners even register their copyright with the authorities for additional legal protection.

What Is Website Copyright?

Website copyright is the legal protection given to original content published on a website.. This can include text, images and videos. If you see a copyright notice on a website, it means that the content is protected and you cannot use it without permission.

Add your website details

Copyright Owner:
Website first created? (eg. © 2024)
Include All Rights Reserved?
Include when the page was last updated?
© 2016 - 2024 www.your-site.com - All Rights Reserved.
Paste this code at the bottom of the page footer section
HTML code
HTML
<div id="copyright" align="center">© 2016 - 2024 www.your-site.com </div>
<script>
(function(){
	let cpr = document.getElementById("copyright");
	cpr.innerHTML = "© 2016 - "+new Date().getFullYear()+"  - All Rights Reserved.";
})();
</script>
PHP code
PHP
<div id="copyright" align="center">© 2016 - <?php echo date('Y'); ?> www.your-site.com  - All Rights Reserved.</div>

Remember, this is just a basic template. You can further customize it to suit the specific needs of your website and your preferences.