-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 2.93 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 2.93 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
<!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="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>WhatsApp Home page</title>
</head>
<body>
<section>
<header>
<nav class="navbar">
<div class="topBar">
<a href="#"><h1 class="animate__animated animate__lightSpeedInLeft">WhatsApp</h1></a>
<img src="assests/menu.svg" alt="menu" class="menuIcon toggle">
</div>
<ul class="navMenu animate__animated animate__backInRight">
<li class="animate__animated animate__backInRight animate__delay-0s"><a href="#">Web</a></li>
<li class="animate__animated animate__backInRight animate__delay-1s"><a href="#">Features</a></li>
<li class="animate__animated animate__backInRight animate__delay-2s"><a href="#">Download</a></li>
<li class="animate__animated animate__backInRight animate__delay-3s"><a href="#">Security</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="textBox">
<h1 class="animate__animated animate__slideInLeft">
Simple. Secure.
Reliable messaging.
</h1>
<p class="animate__animated animate__fadeInLeft animate__delay-1s">
With WhatsApp, you'll get fast, simple, secure messaging and calling for free*, available on phones all over the world.
</p>
<div class="downloads">
<a href="#" class="animate__animated animate__fadeInLeft animate__delay-2s"><i class="fa-brands fa-android"></i>Android</a>
<a href="#" class="animate__animated animate__fadeInLeft animate__delay-3s"><i class="fa-brands fa-apple"></i>iPhone</a>
<a href="#" class="animate__animated animate__fadeInLeft animate__delay-4s"><i class="fa-solid fa-desktop"></i>Mac or Windows</a>
</div>
</div>
<div class="imgBox animate__animated animate__fadeInUpBig animate__delay-5s">
<img src="assests/app.png" alt="app">
</div>
</div>
<div class="blob animate__animated animate__jello animate__delay-5s animate__slower"></div>
</section>
<script src="js/script.js"></script>
</body>
</html>