-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.13 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 1.13 KB
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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./lib/styles/main.css" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<title>Crumbs</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
font-family: system-ui, sans-serif;
min-height: 100vh;
}
h1,
h2 {
margin: 1rem 0;
text-align: center;
}
.accepted {
list-style: none;
margin-top: 16px;
text-align: center;
}
.edit {
margin: auto;
}
</style>
</head>
<body>
<h1>Crumbs</h1>
<div>
<h2>You have accepted the following consent types:</h2>
<ul class="accepted js-accepted"></ul>
</div>
<button class="edit js-edit">Edit cookie settings</button>
<script type="module" src="example.js"></script>
</body>
</html>