Skip to content

Commit 9254843

Browse files
authored
Merge pull request auxfuse#176 from manni8436/manni
created privacy.html, created privacy.css and styled html page to mat…
2 parents ae7494a + fe49ec3 commit 9254843

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed

assets/css/style.css

+31
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ body::after {
6161
pointer-events: none;
6262
}
6363

64+
.privacy-body {
65+
background-color: #94EBF1;
66+
}
67+
6468
img {
6569
display: block;
6670
max-width: 100%;
@@ -626,6 +630,33 @@ select,
626630
line-height: 30px;
627631
}
628632

633+
/* privacy */
634+
635+
.privacyp-header {
636+
margin: 30px;
637+
text-align: center;
638+
text-transform: uppercase;
639+
text-decoration: underline;
640+
}
641+
642+
.policy-updated-header,
643+
.policy-updated-paragraph {
644+
text-align: center;
645+
margin: 30px;
646+
}
647+
648+
.section-header {
649+
text-align: center;
650+
text-decoration: underline;
651+
font-weight: bolder;
652+
}
653+
654+
.section-paragraph {
655+
margin: 40px;
656+
text-align: left;
657+
font-weight: bold;
658+
}
659+
629660
/* Media Queries */
630661
@media (min-width: 576px) {
631662
#content {

privacy.html

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="stylesheet" href="assets/css/style.css">
9+
10+
<title>Git Community - 🟠CI🟠</title>
11+
</head>
12+
13+
<body class="privacy-body">
14+
<h1 class="privacyp-header">Hackathon Github Labs Privacy Policy</h1>
15+
16+
<section>
17+
<h2 class="policy-updated-header">Privacy Policy Last Updated: 26th October 2022.</h2>
18+
<p class="policy-updated-paragraph">This page informs you of the policies of this site regarding the collection of personal
19+
information.</p>
20+
</section>
21+
22+
<section>
23+
<h3 class="section-header">Information Collection</h3>
24+
<p class="section-paragraph">while using our site, no user information is being collected all information that is being
25+
shown is user generated and then stored in individuals sub-directory inside a directory.</p>
26+
</section>
27+
28+
<section>
29+
<h3 class="section-header">Communications</h3>
30+
<p class="section-paragraph">We do not have any marketing or promotional materials and as a result, we will not be
31+
contacting you with a newsletters or any other forms of communication.</p>
32+
</section>
33+
34+
<section>
35+
<h3 class="section-header">Cookies</h3>
36+
<p class="section-paragraph">Cookies are files with small amounts of data, which may include an anonymous unique identifier.
37+
Our site currently doesn't use any cookies to collect any sort of information from a user.</p>
38+
</section>
39+
40+
<section>
41+
<h3 class="section-header">Security</h3>
42+
<p class="section-paragraph">The security of all information is important to us and we would take all measures necessary
43+
to insure all information would be secure, but remember that we do not collect any sort of information from any users
44+
while using the site.</p>
45+
</section>
46+
47+
<section>
48+
<h3 class="section-header">Changes To This Privacy Policy</h3>
49+
<p class="section-paragraph">This Privacy Policy is effective as of 26th October 2022 and will remain in effect except
50+
with respect to any changes in its provisions in the future, which will be in effect immediately after being posted
51+
on this page.</p>
52+
53+
<p class="section-paragraph">We reserve the right to update or change our Privacy Policy at any time and you should check
54+
this Privacy Policy periodically. Your continued use of the service after we post any modifications to the Privacy
55+
Policy constitutes your acknowledgement of the modifications and your consent to abide and be bound by the modified
56+
Privacy Policy.</p>
57+
</section>
58+
</body>

0 commit comments

Comments
 (0)