Created
March 22, 2024 10:28
-
-
Save eldhosejoys/d36ca9c59bc6e717866ff98469e9fc3f to your computer and use it in GitHub Desktop.
Cookie Policy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" /> | |
<script async src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> | |
<script async> | |
window.addEventListener("load", function(){ | |
window.cookieconsent.initialise({ | |
palette: { | |
popup: { | |
background: "#445", | |
text: "#fff" | |
}, | |
button: { | |
background: "#6fa", | |
text: "#000" | |
} | |
}, | |
"theme": "classic", | |
content: { | |
message:"This website uses cookies to ensure you get the best experience on our website. When you click or continue you consent with our", | |
link: "Cookie Policy", | |
href: "https://example.com/cookie-policy.php", | |
"dismiss": "Dismiss", | |
}, | |
})}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment