website/wc.html
2025-03-24 19:55:45 +01:00

83 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1MVYJRKPK2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1MVYJRKPK2');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cookie Usage List</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 50px auto;
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #f9f9f9;
margin: 10px 0;
padding: 15px;
border-left: 5px solid #007BFF;
font-size: 16px;
color: #333;
transition: all 0.3s ease;
}
li:hover {
background-color: #f1f1f1;
border-left-color: #0056b3;
}
.icon {
margin-right: 10px;
color: #007BFF;
}
</style>
</head>
<body>
<div class="container">
<h1>Cookie Usage List</h1>
<ul>
<li>Wii/WiiU/3DS/DSi Only Cookies: Used for the Access Warning Site</li>
<!--<li>Login Session Cookies: Don't login everytime</li>-->
<li>Accept Cookies: To check if you accepted the cookies</li>
<li><h1>Analytics</h1></li>
<li>Time on Site (Anonymous)</li>
<li>What Sites are klicked very often (Anonymous)</li>
<li>What Sites are avoided (Anonymous)</li>
<li>We are using Google Analytics</li>
</ul>
</div>
</body>
</html>