-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.35 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Solution for Technigo Coding Challenge - Cookies</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<section>
<h1>Introduction to cookies</h1>
<h2>What are cookies?</h2>
<p>
HTTP cookies <i>(also known as simply cookies)</i> are small bits of data
exchanged between client and server over the <b>HTTP protocol</b>.
Cookies are placed on the user’s device by the user’s web browser and
are used to identify your device when browsing a website.
<br><br>
Cookies are a part of web browsing that will help web developers give
the user a more convenient and personal website experience.
Cookies are nowadays essential to the modern Internet but it could
also be a vulnerability to your privacy.
</p>
<h2>What are cookies used for?</h2>
<p>
1. Session Management <br>
2. Personalization <br>
3. Tracking <br>
</p>
<h2>Want to learn more?</h2>
<p>
<a href="https://www.kaspersky.com/resource-center/definitions/cookies">Kaspersky - Defenition of cookies</a><br>
<a href="https://www.cs.mcgill.ca/~rwest/wikispeedia/wpcd/wp/h/HTTP_cookie.htm"> Wikispeedia - HTTP cookie</a><br>
<a href="https://devopedia.org/http-cookie">Devopedia - Cookie explanation</a><br>
</p>
</section>
</main>
</body>
</html>