Добрый день . Поставил я значит иконки соц сетей ,но проблема в том ,что при клике на них ничего не происходит,никужа не отправляет (((.
вот код html
<div class="block_socials">
<ul class="menu_socials">
<li><a href="https://www.facebook.com/toptradeco/"></a><img src="images/SMT glue HT/facebook.png"></li>
<li><a href="https://www.youtube.com/channel/UCJUAeDg30IkX-MQRpFXw54A"></a><img src="images/SMT glue HT/youtube.png"></li></li>
<li><a href="@toptradeco.ru"></a><img src="images/SMT glue HT/instagram.svg"></li>
</ul>
</div>
вот css свойства :
.block_socials {
position: absolute;
top: 13%;
left: 27%;
transform: translate(-37%,6%);
}
ul.menu_socials {
list-style: none;
}
ul.menu_socials li {
float: left;
width: 40px;
height: 41px;
border: 3px solid #e9b11e;
margin-right: 36px;
border-radius: 9px;
position: relative;
cursor: pointer;
transition: all 0.5s linear;
}
ul.menu_socials li:last-child{
margin-right: 0;
}
ul.menu_socials li:hover {
background: #e9b11e ;
box-shadow: 0 0 30px 3px #e9b11e;
}
ul.menu_socials li:hover a{
color: #f06060;
}