I've been experimenting with different codes in an attempt to create a glowing button for my website. Here are some of the code snippets I have tried:
.button {
background-color: #1c87c9;
-webkit-border-radius: 60px;
border-radius: 60px;
border: none;
color: #eeeeee;
cursor: pointer;
display: inline-block;
font-family: sans-serif;
font-size: 20px;
padding: 5px 15px;
text-align: center;
text-decoration: none;
}
<button class=""> Hello World! </button
I would greatly appreciate any guidance on how to successfully create this glowing button.