-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
93 lines (74 loc) · 3.67 KB
/
privacy.html
File metadata and controls
93 lines (74 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> AdoptUs </title>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/fb9916b182.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://kit.fontawesome.com/fb9916b182.css" crossorigin="anonymous">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&family=Sacramento&display=swap"
rel="stylesheet">
<!-- External CSS -->
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- External JS -->
<script src="feature.js"></script>
</head>
<body>
<div id="side-menu">
<ul>
<li> <a class="active" href="index.html"> <i class="fa-solid fa-house"></i> Home Page </a></li>
<li> <a class="" href="pets.html"> <i class="fa-sharp fa-solid fa-eye"></i> Browse Available Pets </a>
</li>
<li> <a class="" href="find.html"> <i class="fa-sharp fa-solid fa-magnifying-glass"></i> Find a dog/cat </a>
</li>
<li> <a class="" href="dogcare.html"> <i class="fa-solid fa-dog"></i> Dog Care </a></li>
<li> <a class="" href="catcare.html"> <i class="fa-solid fa-cat"></i> Cat Care </a></li>
<li> <a class="" href="givepet.html"> <i class="fa-solid fa-heart"></i> Give your pet </a></li>
<li> <a class="" href="contact.html"> <i class="fa-solid fa-address-book"></i> Contact Us </a></li>
</ul>
</div>
<div id="container">
<div id="header">
<a href="homepage.html"> <img class="main-icon"
src="https://cdn-icons-png.flaticon.com/512/3047/3047827.png" alt="main-icon"> </a>
<h1 id="name_service"> AdoptUs </h1>
<h5 id="date"> </h5>
<h5 id="time"> </h5>
</div>
<h1 class="Title"> Privacy/Disclaimer Statement</h1>
<div class="statement">
<p> AdoptUs is committed to safeguarding user privacy and ensuring the appropriate handling of personal
data. We only utilize the data we get through our website to handle adoption requests, match pets with
suitable families, and enhance user experience. User information is not shared, sold, or rented to any
kind of parties. We take data security very seriously and have taken precautions to guard against loss
and
unauthorized accesses. We cannot, however, by scaling our website weekly, guarantee the security of the
data. Pet owners are responsible or the information they put on our website, and we are unable to vouch
for its authenticity. We do not
have the complete control of the availability, suitability, give professional advice and make no
guarantees or representations about the availability, suitability,
, or reliability of the information on our website.
This statement may be updated regularly and we welcome any questions or concerns. Contact us at
adoptus@gmail.com.</p>
</div>
<div class="privacy-logo"> <i class="fa-solid fa-stamp fa-10x fa-flip" style="--fa-animation-duration: 3s;"></i>
</div>
<div id="footer1">
<a href="privacy.html" class="privacy"> <img src="img/output-onlinegiftools.gif" alt="privacy-policy"
class="privacy-policy" title="Privacy Statement"> </a>
<p class="copyright">© AdoptUs</p>
</div>
</div>
<script>
document.getElementById("date").innerHTML = getCurrentDate();
setInterval(getCurrentTime, 1000);
</script>
</body>
</html>