-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 2.2 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 2.2 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
<!DOCTYPE html>
<html lang="uz">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Data Privacy</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
</head>
<body>
<header class="navbar">
<div class="logo">
<img src="assets/green.png" alt="YourLogo" />
<span>YourLogo</span>
</div>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">SERVICES</a></li>
<li><a href="#">CONTACT</a></li>
<li class="btn-signin"><a href="#">SIGN IN</a></li>
</ul>
</nav>
<div class="social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</header>
<main class="hero">
<div class="hero__image">
<img src="assets/stats.png" alt="Stats" class="decor-stats" />
<img src="assets/black-star.png" alt="Star" class="decor-star" />
<img src="assets/person.png" alt="Person" class="main-person" />
</div>
<div class="hero__content">
<h1 class="title">
DATA <span class="highlight">PRIVACY</span>
</h1>
<div class="info-box">
<div class="info-box__header">
<a href="#" class="tag">HOW TO PROTECT</a>
<a href="#" class="tag">YOUR INFORMATION</a>
</div>
<p class="info-box__text">
LOREM IPSUM DOLOR SIT AMET, CONSECTETUR ADIPISCING ELIT,
SED DO EIUSMOD TEMPOR INCIDIDUNT UT LABORE ET DOLORE MAGNA ALIQUA.
</p>
<div class="info-box__footer">
<button class="btn-white" id="signinBtn">SIGN IN</button>
<a href="#" class="read-more" id="readMoreBtn">READ MORE</a>
</div>
<img src="assets/qulf.png" alt="lock" class="shape qulf" />
</div>
<img src="assets/globus.png" alt="sphere" class="shape sphere" />
</div>
</main>
<script src="js/script.js"></script>>
</body>
</html>