-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 716 Bytes
/
index.html
File metadata and controls
31 lines (28 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--
* Cookie alert by Decaded
* https://github.com/Decaded/Cookier
* Released under MIT license
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Cookie Consent Example</title>
<link
rel="stylesheet"
href="cookier.css"
/>
</head>
<body>
<div id="cookierBanner" class="cookierAlert">
<p>It doesn't change anything, but we must inform you that we use cookies.</p>
<a href="https://www.cookiesandyou.com/" target="_blank">What are cookies?</a>
<button id="closeCookierButton" class="closeCookierButton">X</button>
</div>
<script src="cookier.js"></script>
</body>
</html>