forked from L0laL33tz/PrivacyIndex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
67 lines (58 loc) · 3.54 KB
/
about.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="stylesheet.css">
<title>Privacy Index</title>
<meta property="og:title" content="Privacy Index" />
<meta property="og:description" content="An index of all things digital privacy to help you stay private online." />
<meta property="og:image" content="https://privacyindex.net/PrivacyIndex_logo.png"/>
<meta property="og:url" content="https://privacyindex.net" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Privacy Index" />
<meta name="twitter:description" content="An index of all things digital privacy to help you stay private online."/>
<meta name="twitter:image" content="https://privacyindex.net/PrivacyIndex_logo.png" />
<meta name="twitter:url" content="https://privacyindex.net" />
</head>
<body>
<<div id="nav" style="background-color: rgb(255, 255, 255); padding: 10px; width: 100%; position: fixed; top: 0; left: 0;">
<div id="logo"><img src="../PrivacyIndex_logo.png" onclick="toggleMenu()"></div>
</div>
<div id="menu">
<div id="ul">
<h1><a href="index.html">Home</a></h1>
<h1><a href="directory/tools.html">Tools</a></h1>
<h1><a href="topics.html">Topics</a></h1>
<h1><a href="about.html">About</a></h1>
<h1><a href="mailto:[email protected]">Contact</a></h1>
<a href="https://github.com/L0laL33tz/PrivacyIndex" target="_blank"><img src="github-mark.png"></a>
</div>
</div>
<div id="hello"></div>
<div id="about">
<p>PrivacyIndex is a non-exhaustive, work in progress archive of threats, tools and topics to help you stay private online. If you are new to online privacy, start by <a href="https://www.privacyguides.org/en/basics/threat-modeling/" target="_blank">defining your threat vectors</a> or begin by exploring different cases. Use the green bubbles to navigate.</p>
<p>PrivacyIndex exists to give you a broad overview of the tools available, the topics that may be important to you, and the threats that may arise. In privacy there is no one fits all, so PrivacyIndex makes no recommendations as to which tools you should be using. Features are not endorsements.</p>
<p>Please note that PrivacyIndex makes no guarantees for the information on this page. If you feel like content is missing, outdated, incomplete or incorrect, please consider <a href="https://github.com/L0laL33tz/PrivacyIndex" target="_blank">contributing on GitHub</a>.</p>
<p>PrivacyIndex is licensed under the WTFPL public license, allowing you to copy, modify, redistribute, and sell original content of this page. For third party content, please see the original content's licenses.</p>
<p>This project is inspired by Mindy Seu's <a href="https://cyberfeminismindex.com/" target="_blank">Cyberfeminism Index</a> and the work of <a href="https://activism.net" target="_blank">activism.net</a>.</p>
</div>
<div id="footer">
<div id="footnav-left">This website does not use cookies or other tracking services.</div>
<div id="footnav-right">Contact</br><a href="mailto:[email protected]">[email protected]</a></div>
</div>
<div id="footspace"></div>
<script>
function toggleMenu() {
var menu = document.getElementById('menu');
if (menu.style.opacity === "0" || menu.style.opacity === "") {
menu.style.opacity = "1";
menu.style.pointerEvents = "auto";
} else {
menu.style.opacity = "0";
menu.style.pointerEvents = "none";
}
}
</script>
</body>
</html>