-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whatsapp Message Sender</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>WhatsApp Message Sender</h1>
<div class="input-container">
<input type="text" id="number" placeholder="Reciever Whatsapp Number" pattern="[0-9]*" inputmode="numeric" autocomplete="true" autofocus >
<p id="input-error"> </p>
</div>
<select onchange="setStyle(this)">
<option value="">Select style </option>
<option value="*">Bold </option>
<option value="_">Italic </option>
<option value="```">Monospace </option>
<option value="~">Strikethrough </option>
</select>
<div class="input-container">
<textarea id="message" placeholder="Literally anything you want"></textarea>
<p id="message-error"> </p>
<p id="char-count">0</p>
</div>
<button id="sendBtn" onclick="sendMessage()">Send</button>
</div>
<script src="script.js"></script>
</body>
</html>