<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
.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: 10px 10px;
text-align: center;
text-decoration: none;
}
@keyframes glowing {
0% { background-color: #2ba805; box-shadow: 0 0 5px #2ba805; }
50% { background-color: #49e819; box-shadow: 0 0 20px #49e819; }
100% { background-color: #2ba805; box-shadow: 0 0 5px #2ba805; }
}
.button {
animation: glowing 1300ms infinite;
}
</style>
</head>
<body>
<h2>Создайте мигающую/светящуюся кнопку</h2>
<a class="button" href="#">Нажмите сюда!</a>
<button type="submit" class="button">Нажмите сюда!</button>
</body>
</html>