<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
.socialmedia
{
background-color: gray;
padding: 60px 25px;
text-align: center;
}
.btn
{
border: none;
border-radius: 10px;
font-size: 30px ;
padding: 10px;
}
.btn:hover
{
background-color: blueviolet;
}
</style>
</head>
<body>
<div class="socialmedia"> <button onclick="window.open('https://www.facebook.com/')" class="btn"><i style="color: #4267B2;" class="fa-brands fa-facebook"></i></button></div>
</body>
</html>
0 Comments