Memasang notif cookies di web
October 09, 2021
Baca selengkapnya tentang cookies web di www.niagahoster.co.id/
Cara memasang notifikasi cookies di blog
- Login ke blogger
 - Pilih tata letak
 - Buat Widget baru / HTML/JAVASCRIPT
 - salin script ini dan pastekan
 
ubah url privacy-policy dengan url policy anda
 <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
  "palette": {
    "popup": {
      "background": "#2574a9"
    },
    "button": {
      "background": "transparent",
      "text": "#ffffff",
      "border": "#ffffff"
    }
  },
  "content": {
    "href": "url privacy-policy anda"
  }
})});
</script>