This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
61 lines (59 loc) · 2.19 KB
/
privacy-policy.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Roboto:ital,wght@0,300;0,500;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="lib/font-awesome/css/font-awesome.min.css" />
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/fontawesome.min.css" integrity="sha512-P9vJUXK+LyvAzj8otTOKzdfF1F3UYVl13+F8Fof8/2QNb8Twd6Vb+VD52I7+87tex9UXxnzPgWA3rH96RExA7A==" crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<title>CasinoLA</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="logo">
<a href="index.html"
><img src="images/logo.png" alt="Casinola Poker"
/></a>
</div>
<label class="menu-icon" for="label-menu">
<i class="fa fa-bars"></i>
</label>
<input type="checkbox" name="checkbox" id="label-menu" />
<nav class="navbar">
<a id="about-link" href="index.html" class="navbar__links">About</a>
<a
id="terms-link"
href="term-and-condition.html"
class="navbar__links"
>Terms and Conditions</a
>
<a
id="privacy-link"
href="privacy-policy.html"
class="navbar__links active"
>Privacy Policy</a
>
</nav>
</header>
<section id="privacy-policy" class="container">
<div class="content">
<h1 class="content__heading">Privacy Policy</h1>
<p class="content__detail">This is Privacy Policy Page.</p>
</div>
</section>
<footer class="footer">
<div class="footer__image">
<img src="images/logo.png" alt="Footer Logo" />
</div>
</footer>
</div>
</body>
</html>