-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
63 lines (56 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Whatsapp Sender</title>
<!-- Icon untuk website WA Sender -->
<link rel="icon" href="image/tick.png" type = "image/x-icon">
<!-- <div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div> -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="container-fluid center-konten">
<div class="container" style="display: table-cell; text-align: center; vertical-align: middle;">
<div class="card text-center">
<!-- Bagian untuk header -->
<div class="card-header h5">
<b>
WhatsApp Sender
</b>
</div>
<!-- Bagian untuk body -->
<div class="card-body">
<!-- Bagian untuk nomor telepon -->
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1"><b>+62</b></span>
</div>
<input type="tel" id="phone-number" class="form-control" placeholder="82144686462" aria-label="Username" aria-describedby="basic-addon1">
</div>
<!-- Bagian untuk field text -->
<div class="input-group mb-3">
<textarea class="form-control" id="text-message" rows="7" placeholder="Text here..." aria-label="With textarea"></textarea>
</div>
<!-- Bagian untuk nomot tertuju -->
<p>Nomor tertuju : <b id="receiver-number"></b></p>
<!-- Bagian untuk tombol -->
<button id="clear-field" class="btn btn btn-dark">Clear</button>
<button id="generate-link" class="btn btn btn-success">Send</button>
</div>
<!-- Bagian untuk footer -->
<div class="card-footer text-muted" style="font-size: 12px;">
<p class="text-center mt-2"> <b>NOTE :</b> <br>
Cara memformat pesan yang dibuat agar lebih menarik bisa cek <a href="https://faq.whatsapp.com/en/android/26000002/">disini</a>. Contoh = *<b>bold</b>* dan _<i>italic</i>_
</p>
<p class="font-weight-lighter">made with ❤️ by <a href="https://dipadana.github.io/">Dipadana Putu</a></p>
</div>
</div>
</div>
</div>
<!-- script dari js -->
<script src="script/script.js"></script>
</body>
</html>