-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
35 lines (35 loc) · 1.6 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./src/cookie-consent.css"/>
<title>cookie-consent-js testpage</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
body {
font-family: sans-serif;
line-height: 1.4;
}
</style>
</head>
<body>
<h1>cookie-consent-js</h1>
<p>
A simple dialog and framework to handle the EU law (as written by EuGH, 1.10.2019 – C-673/17) about cookies
in a website.
</p>
<p>You can use this banner for your website free of charge under the MIT license.</p>
<p>The banner and framework was designed in cooperation with data protection officers and lawyers. However, we can not guarantee whether the banner is correct for your website and assume no liability for its use.</p>
<h2>Examples</h2>
<ul>
<li><a href="examples/cookie-consent-example.html">Plain HTML example</a></li>
<li><a href="examples/cookie-consent-bootstrap-example.html">Example with Bootstrap 4</a></li>
<li><a href="examples/cookie-consent-bootstrap-5-example.html">Example with Bootstrap 5</a></li>
<li><a href="examples/cookie-consent-block-example.html">Example "blockAccess: true"</a></li>
<li><a href="examples/cookie-consent-callback.html">Example, using "postSelectionCallback" to reload after selection</a></li>
</ul>
<h2>Documentation</h2>
<ul><li><a href="https://github.com/shaack/cookie-consent-js">View the git repository and documentation for this project</a></li></ul>
</body>
</html>