Skip to content

Commit

Permalink
Create privacy.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightshayan authored Apr 13, 2024
1 parent e59f318 commit 4a22a31
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions privacy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy</title>
<style>
html {
background-color: #ffffff;
font-family: Arial;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
border: 0px solid rgb(221, 221, 221);
background-color: rgb(221, 221, 221);
}

li {
float: left;
}

li a {
display: block;
color: #666;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

li a:hover:not(.active) {
background-color: #fafafa;
}

li a.active {
color: white;
background-color: #054cbe;
}
</style>
</head>
<body>

<ul>
<li><a class="active" href="Talk">Talk</a></li>
<li><a href="About">About</a></li>
<li><a href="TOS">TOS</a></li>
<li><a href="privacy.html">Privacy</a></li>
</ul>
<h1>We care deeply about your privacy</h1>
<p1>No data is stored EVER</p1>

</body>
</html>

0 comments on commit 4a22a31

Please sign in to comment.