-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (69 loc) · 3.68 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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">
<title>WhatsApp</title>
<!-- google fonts linking -->
<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:wght@100&display=swap" rel="stylesheet">
<!-- stylesheet link tag-->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style2.css">
<!-- fontawesome cdn -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
</head>
<body>
<!-- div(s) for background colors -->
<div class="green" style="position: absolute; width: 100%; background-color: rgb(45, 192, 143); z-index: -1;"></div>
<div class="black" style="position: absolute; width: 100%; background-color: rgb(17, 16, 16); z-index: -2;"></div>
<!-- main content for the main -->
<div class="body">
<!-- whatsapp logo -->
<div class="top">
<header>
<img src="walogo.png" width="46px" style="border-radius: 50%;" alt="Whatsapp logo">
<caption> WHATSAPP WEB</caption>
</header>
</div>
<!-- instructions to use whatsapp web and the scan qrcode section -->
<div class="bottom" style="z-index: 100;">
<!-- message for not supported devices -->
<div class="notsupp">
<p>WhatsApp web is not designed for Smartphones. Please try to open with PC/Computer</p>
</div>
<div class="firstheading">
<div class="usewa">
<p style="margin-top: 0;">To use WhatsApp on your computer:</p>
</div>
<div class="instructions">
<!-- ordered list is used to display the instructions -->
<ol>
<li>Open WhatsApp On Your Phone</li>
<li>Tap <strong>Menu </strong> <span><i class="fas fa-ellipsis-v"></i></span> or <strong>Settings </strong><span><i class="fas fa-cog"></i></span> and Select <strong>Linked Devices</strong></li>
<li>Tap on <strong>Link a Device</strong></li>
<li>Point Your Phone On The Screen To Capture The Code</li>
</ol>
</div>
<!-- need the help link which takes the user to whatsapp FAQ page -->
<div class="help">
<a href="https://faq.whatsapp.com/web/download-and-installation/how-to-log-in-or-out?lang=en">Need help to get started?</a>
</div>
<!-- whatsapp web video -->
<div class="video">
<iframe width="560" height="314" src="https://www.youtube.com/embed/FFiQ569fu1E" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"></iframe>
</div>
</div>
<!-- scannable qrcode -->
<div class="scan">
<img src="qrcode.png" style="float: right;" alt="" width="300">
<div class="signedin">
<input type="checkbox" name="signed" id="" checked>Keep me signed in
</div>
</div>
</div>
</div>
</body>
</html>