Read more
Glowing text effext
Source code here
<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>Document</title>
<style>
button{
margin:20% 50%;
display:flex;
align-items:center;
justify-content: center;
background:cyan;
border-radius:20px;
border:1px solid cyan;
box-shadow:0 0 30px cyan,0 0 5px cyan;
}
button:hover{
box-shadow:0 0 100px cyan ;
}
</style>
</head>
<body>
<button >glowing button</button>
</body>
</html>





0 Reviews