-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
109 lines (101 loc) · 4.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FEMSMSJH9L"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FEMSMSJH9L');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/style.css" />
<link rel="manifest" href="manifest.json" />
<meta name="description" content="Send WhatsApp messages without saving numbers easily in just one click!" />
<meta name="keywords"
content="whatsapp, whatsapp-them, whatsapp them, send, messages, without, saving, numbers, phone, yajat malhotra, yajat-malhotra" />
<meta name="author" content="Yajat Malhotra" />
<meta name="coverage" content="Worldwide" />
<meta name="rating" content="General" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://whatsappthem.iamyajat.com/">
<meta property="og:title" content="WhatsAppThem">
<meta property="og:description" content="Send WhatsApp messages without saving numbers easily in just one click!">
<meta property="og:image" content="https://whatsappthem.iamyajat.com/images/wt-card.png">
<meta property="og:site_name" content="WhatsAppThem" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="WhatsAppThem - Send WhatsApp Messages Without Saving Numbers" />
<meta name="twitter:title" content="WhatsAppThem - Send WhatsApp Messages Without Saving Numbers" />
<meta property="twitter:image" content="https://whatsappthem.iamyajat.com/images/wt-card.png" />
<meta name="twitter:description" content="Send WhatsApp messages without saving numbers easily in just one click!" />
<meta name="twitter:creator" content="iamyajat" />
<meta itemprop="name" content="WhatsAppThem - Send WhatsApp Messages Without Saving Numbers" />
<meta itemprop="description" content="Send WhatsApp messages without saving numbers easily in just one click!" />
<link rel="canonical" href="https://whatsappthem.iamyajat.com" />
<!-- ios support -->
<link rel="apple-touch-icon" href="images/icons/icon-72x72.png" />
<link rel="apple-touch-icon" href="images/icons/icon-96x96.png" />
<link rel="apple-touch-icon" href="images/icons/icon-128x128.png" />
<link rel="apple-touch-icon" href="images/icons/icon-144x144.png" />
<link rel="apple-touch-icon" href="images/icons/icon-152x152.png" />
<link rel="apple-touch-icon" href="images/icons/icon-192x192.png" />
<link rel="apple-touch-icon" href="images/icons/icon-384x384.png" />
<link rel="apple-touch-icon" href="images/icons/icon-512x512.png" />
<meta name="apple-mobile-web-app-status-bar" content="#A53AF7" />
<meta name="theme-color" content="#A53AF7" />
<link rel="shortcut icon" href="images/icons/icon.png" type="image/x-icon">
<title>WhatsAppThem - Send WhatsApp Messages Without Saving Numbers</title>
</head>
<body>
<main>
<nav>
<img src="images/nav-logo.png" />
<ul>
<li><a class="nav--link" href="https://iamyajat.com" target="_blank">About</a></li>
</ul>
</nav>
<div class="card">
<label class="card--title" for="phone">Phone number:</label>
<input type="tel" id="phone" name="phone" placeholder="+919876543210" required />
<small id="messageShowHide">+ Add message</small>
<br />
<textarea id="messageData" name="message" placeholder="Type a message" rows="5" cols="30"></textarea>
<br />
<a id="submit" class="card--link">Send Message</a>
<label class="errormessage" id="errormessage"></label>
</div>
<div class="card2">
<h3 class="card--title">What is it?</h3>
<p>A simple app which you can use to send WhatsApp messages without saving the number.</p>
</div>
<div class="card2">
<h3 class="card--title">How to use?</h3>
<ol class="list">
<li>Copy the number</li>
<li>Paste it here</li>
<li>Hit Send Message</li>
</ol>
</div>
<a href="https://OurChatStory.co" target="_blank">
<img class="card3" src="images/wrapped.webp" />
</a>
<div class="card2">
<h3 class="card--title">Want to contribute?</h3>
<p>
Feel free to create issues and open PRs on my GitHub Repo, <a class="contribute"
href="https://github.com/iamyajat/WhatsAppThem" target="_blank">iamyajat/WhatsAppThem</a>.
</p>
</div>
<div class="footer">
<a href="https://rzp.io/l/iamyajat" target="_blank" class="sponsor-btn">BUY ME A PIZZA</a> <br />
<p>Made with 💜 by <a href="https://iamyajat.com" target="_blank">Yajat Malhotra</a></p>
</div>
</main>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>