1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5 <title>
6 </title>
7 </head>
8 <body>
9 <div class="page">
10 <div class="content">
11 <h1>Welcome To (Wensite Name)</h1>
12 <p>Allow Cookies</p>
13 <div class="cookies">
14 <a href="page2.html"><button onclick="alert('Cookies Enabled')" class="btn">Yes</button></a>
15 <a href="page2.html"><button onclick="alert('Cookies Disabled')" class="btn">No</button></a>
16 </div>
17 </div>
18 </div>
19
20 <style>
21
22 body{
23 background-color: black;
24 text-align: center;
25 }
26
27 .page{
28 background-color: blue;
29 border: 5px solid white;
30 color: lime;
31 }
32
33 .cookies{
34 background-color: black;
35 border-width: 1px;
36 border-
37 }
38
39 .btn{
40 border-color: none;
41 border-radius: 30%;
42 }
43
44 </style>
45
46 </body>
47</html>