-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
95 lines (82 loc) · 4.33 KB
/
privacy.html
File metadata and controls
95 lines (82 loc) · 4.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<!-- Page Title -->
<title>Pepe / IS / The / Frog</title>
<!-- META TAGS -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="PePe./IS a Meme Site for the Frogman himself!">
<meta name="keywords" content="pepe, pepe the frog, pepe.is, www.pepe.is, pepe meme, meme, frog, frog meme, pepe social">
<meta name="robots" content="index, follow">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="196x196" href="img/spin.gif">
<link rel="icon" type="image/png" sizes="96x96" href="img/spin.gif">
<link rel="icon" type="image/png" sizes="64x64" href="img/spin.gif">
<link rel="icon" type="image/png" sizes="32x32" href="img/spin.gif">
<link rel="icon" type="image/png" sizes="16x16" href="img/spin.gif">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<section class="policy-section">
<a href="https://PePe.IS"><h1 class="main">PePe</h1></a>
<div class="mainContent">
<div class="contentBox">
<h2 class="policy-title">Privacy Policy</h2>
<div class="policy-content">
<h3 class="policy-heading">What Information We Collect</h3>
<p class="policy-text">
When accessing PePe.IS, we collect various metadata about your request including but not limited to the full request object, IP Address, and User-Agent (this is a string which uniquely identifies your Web Browser). Additionally, we collect user generated content when provided to us through our random Pepe meme generator service.
</p>
<h3 class="policy-heading">How We Use the Collected Information</h3>
<p class="policy-text">
We use the information we collect to facilitate access to the PePe.IS service and provide it to you. We also use this information to protect the service from fraud and abuse, ensuring a safe and enjoyable experience for all Pepe enthusiasts.
</p>
<h3 class="policy-heading">How We Protect the Collected Information</h3>
<p class="policy-text">
We use a variety of technical measures to protect your information. This includes encrypting requests that go to and from our servers, encrypting information locally (commonly called end-to-end encryption) where possible, and developing strong information access controls to prevent unauthorized access. Your Pepe memes are safe with us!
</p>
<h3 class="policy-heading">Third-Party Services</h3>
<p class="policy-text">
PePe.IS uses Tenor API to provide random Pepe meme images. When you use our service, requests are made to Tenor's servers. Please refer to Tenor's privacy policy for information about how they handle data.
</p>
<h3 class="policy-heading">Contact</h3>
<p class="policy-text">
If you have any questions or concerns about this privacy policy, please contact us at hi [AT] pepe [DOT] is
</p>
</div>
<small class="policy-date">Last updated 02/28/2023</small>
</div>
</div>
</section>
<!-- Scroll to Top Button -->
<button id="scrollToTop" class="scroll-to-top" onclick="scrollToTop()">
<span>⬆</span>
</button>
<div class="footer">
<p><a href="terms.html">Terms</a> | <a href="privacy.html">Privacy</a> | <a href="https://github.com/pepe-is">Github</a></p>
<p><a href="mailto:hi [AT] pepe [DOT] is">hi [AT] pepe [DOT] is</a></p>
<p>©<script>new Date().getFullYear()>2010&&document.write(new Date().getFullYear());</script></p>
</div>
<!-- Scroll to Top Script -->
<script>
// Show/hide scroll to top button
window.addEventListener('scroll', function() {
var scrollToTopBtn = document.getElementById('scrollToTop');
if (window.pageYOffset > 300) {
scrollToTopBtn.classList.add('visible');
} else {
scrollToTopBtn.classList.remove('visible');
}
});
// Scroll to top function
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
</script>
</body>
</html>