GLOW Button Cyan
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>button</title>
<style>
body{
background-color: black;
}
button{
background-color: cyan;
border: none;
padding: 20px;
font-size: 20px;
box-shadow: 0 0 5px cyan, 0 0 25px cyan;
}
button:hover{
box-shadow: 0 0 5px cyan, 0 0 25px cyan,
0 0 50px cyan, 0 0 100px cyan ,0 0 200px cyan;
cursor: pointer;
}
</style>
</head>
<body>
<button>Glowing Button</button>
</body>
</html>
Comments
Post a Comment