-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
157 lines (136 loc) · 4.21 KB
/
privacy.html
File metadata and controls
157 lines (136 loc) · 4.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Privacy Policy - The Bridge</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Privacy Policy</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="team.html">Team</a>
<a href="privacy.html">Privacy</a>
</nav>
<div class="container">
<h2>Data and Information</h2>
<p>
The Bridge respects the privacy of all members and collaborators.
Any information shared is used strictly for professional and project purposes.
</p>
<p>
No personal data is sold or shared with third parties without consent.
</p>
<p>
This site is mainly informational and does not collect sensitive user data.
</p>
</div>
<footer>
<p>© 2026 The Bridge Initiative</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Privacy - The Bridge</title>
<link rel="stylesheet" href="style.css">
<style>
.cards {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
}
.card {
background: #ffffff;
padding: 15px;
flex: 1 1 45%;
min-height: 180px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: 0.3s ease;
}
.card:hover {
background: #0a2540;
color: white;
transform: translateY(-5px);
}
.card h3 {
color: #2e8b57;
margin-bottom: 10px;
}
.card p {
font-size: 14px;
line-height: 1.4;
margin-bottom: 10px;
}
</style>
</head>
<body>
<header>
<h1>Privacy Policy - The Bridge</h1>
<p>Your Data, Your Safety, Our Commitment</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="team.html">Team</a>
<a href="privacy.html">Privacy</a>
</nav>
<div class="container">
<div class="cards">
<div class="card">
<h3>Portfolio Privacy</h3>
<p>
All team member portfolios are hosted securely. Visitors can **view portfolios publicly**, but **cannot edit** any content.
</p>
<p>
Repositories on GitHub are **private by default**, and only authorized team members can make changes.
Public access is read-only.
</p>
</div>
<div class="card">
<h3>Personal Information</h3>
<p>
Contact details provided on this website are intended solely for professional inquiries.
We do not share your email, phone number, or personal information with third parties.
</p>
<p>
Any user-submitted data for project collaboration or registration is securely stored and used only for the intended purpose.
</p>
</div>
<div class="card">
<h3>Website Security</h3>
<p>
Our website follows best practices for security. All files are served as static content, which prevents unauthorized changes.
Visitors cannot directly alter content on the site.
</p>
<p>
We regularly back up our site to ensure data integrity and recovery in case of technical issues.
</p>
</div>
<div class="card">
<h3>GitHub Repositories</h3>
<p>
Project repositories for The Bridge are **private and protected**. Only collaborators can push updates.
Links to portfolios allow **read-only access** to showcase work without compromising security.
</p>
<p>
Any updates to projects or member contributions are verified before being published publicly.
</p>
</div>
</div>
</div>
<footer>
<p>© 2026 The Bridge Initiative</p>
<p>"Connecting Minds, Crafting Future Professionals"</p>
</footer>
</body>
</html>