গ্লোয়িং বাটন
প্রিভিউ
সোর্স কোড কোড:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
<style>
button {
padding: 15px 30px;
font-size: 18px;
font-weight: bold;
color: #ffffff;
background-color: #007BFF;
border: none;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 0 5px #007BFF,
0 0 25px #007BFF;
transition: all 0.3s ease;
}
button:hover {
padding: 15px 30px;
background-color: #0056b3;
box-shadow: 0 0 5px #007BFF,
0 0 25px #007BFF, 0 0 50px #007BFF,
0 0 100px #007BFF, 0 0 200px #007BFF;
}
</style>
</head>
<body>
<button>Glowing Button</button>
</body>
</html>