-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 865 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<title>Cookie Banner</title>
</head>
<body>
<div class="container my-5">
<h1 class="mb-5">Cookie Banner</h1>
<div class="alert alert-primary d-flex align-items-center mb-5" id="cookie-banner">
<div class="flex-fill">
This site uses cookies to ensure you get the best experience on our website.
<a href="https://example.com/cookies">Learn more</a>
</div>
<button class="btn btn-primary" onclick="acceptCookies();">Got it!</button>
</div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
<script src="js/script.js"></script>
</body>
</html>