Advertisement
Guest User

Untitled

a guest
May 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.60 KB | None | 0 0
  1. <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
  2. <script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
  3. <script>
  4. window.addEventListener("load", function(){
  5. window.cookieconsent.initialise({
  6.   "palette": {
  7.     "popup": {
  8.       "background": "#aa0000",
  9.       "text": "#ffdddd"
  10.     },
  11.     "button": {
  12.       "background": "#ff0000"
  13.     }
  14.   },
  15.   "theme": "classic",
  16.   "content": {
  17.     "message": "XXX",
  18.     "dismiss": "XXX",
  19.     "link": "XXX",
  20.     "href": "XXX"
  21.   }
  22. })});
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement