-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecuritySystems.html
More file actions
30 lines (28 loc) · 1.28 KB
/
SecuritySystems.html
File metadata and controls
30 lines (28 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title>World Security</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1>Security Systems</h1>
<p>Use of the word security refers to the techniques used to ensure that data and files stored on a computer cannot be read or compromised by any individuals without the correct authorisation</p>
<img src="computerpadlock.jpg">
<div>
<h2>Reasons for needing security</h2>
<ul>
<li>Protecting financial systems and currency</li>
<li>Avoid and stop identity theft</li>
<li>Protection of personal files</li>
<li>Ensure a sense of privacy when accessing internet</li>
</ul>
</div>
<div>
<h3>Cryptography</h3>
<p>Cryptography is the practise of successfully encrypting and decrypting data. <br> This encryption turns the data into unintelligible text that is useless to malicious third parties, known as adversaries.
</div>
</body>
</html>