Kode HTML & CSS untuk Portal WhatsApp
Berikut adalah contoh coding HTML dan CSS untuk membuat portal ke WhatsApp:
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Portal WhatsApp</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>Selamat datang di Portal WhatsApp</h1>
<p>Silakan klik tombol di bawah ini untuk membuka WhatsApp:</p>
<a href="https://wa.me/xxxxxxxxxxx" target="_blank" class="whatsapp-btn">Buka WhatsApp</a>
</div>
</body>
</html>
CSS (style.css):
.container {
text-align: center;
margin-top: 100px;
}
.whatsapp-btn {
display: inline-block;
padding: 10px 20px;
background-color: green;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
margin-top: 20px;
}
Pastikan untuk mengganti 'https://wa.me/xxxxxxxxxxx' dengan nomor WhatsApp yang ingin Anda tuju.
原文地址: http://www.cveoy.top/t/topic/vF5 著作权归作者所有。请勿转载和采集!