-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Whatsapp Direct By @Adgamerx</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="login-box">
<h1>Whatsapp Direct</h1>
<h2>Send Message To Whatsapp Number Without Saving</h2>
<form name="messageForm" id="messageForm" class="col s12" onsubmit="return send()">
<div class="label-field col s4">
<div class="label">
<label name="label" id="dialcode" required="">
<option value="">+91</option>
</label>
</div>
</div>
<div class="label-field col s8">
<div class="textbox">
<input type="tel" id="phone" placeholder="Enter Mobile Number">
</div>
</div>
<div class="textbox">
<textarea rows="6" cols="50" name="message" id="message" placeholder="Enter your message"></textarea>
</div>
<input type="submit" class="btn" value="Send message">
</form>
<div class="footer">
Created With ❤️ By <a href="https://www.facebook.com/adgamerx" target="_blank">Aman Dutt</a>
</div>
</div>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>