-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcook.php
35 lines (35 loc) · 1.08 KB
/
cook.php
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
<html>
<style>
.text{
text-align: center;
}
body{
background-image: linear-gradient(315deg, #3a6186 0%, #89253e 74%);
font-size: 20px;
}
button{
font-size: 20px;
text-align: center;
border : green 1px;
background-color: lightblue;
border: 2px solid black;
outline: none;
cursor: pointer;
margin: 0px 590px auto;
}
</style>
<body>
<b><h1>What are 'cookies'?</b></h1>
<br>
<p class="text">Cookies are small files that a site or its service provider transfers to your computer's hard drive
through your Web browser (if you allow)
that enables the site's or service provider's systems to recognize your browser and capture and
remember certain information.
They are used to help us understand your preferences based on previous
or current site activity, which enables us to provide you with improved services.
We also use cookies to help us compile aggregate data about site traffic and site
interaction so that we can offer better site experiences and tools in the future.<p>
<br>
<a href="dashboard.php"> <button>Dashboard</button> </a>
</body>
</html>