-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (38 loc) · 982 Bytes
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cookie Policy</title>
<link rel="stylesheet" href="cookiePolicy.css">
<style>
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<div class="cookiePolicy">
<div class="cookiePolicy-container">
<h3 class="cookiePolicy-title">Cookies used on our website</h3>
<div class="cookiePolicy-message">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</div>
<button class="btn btn--secondary js-cookiePolicy-accept">
Accept
</button>
<a href="/hygiene.html" class="btn btn--tertiary">
Find out more
</a>
<div class="cookiePolicy-close js-cookiePolicy-accept icon-cross">x</div>
</div>
</div>
<script src="/umd/cookie-policy-umd.js"></script>
<script>
var policyElement = document.querySelector('.cookiePolicy');
new CookiePolicy(policyElement, {
policyName: 'policy-agreed',
policySeen: 'policy-seen'
});
</script>
</body>
</html>