<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body{
background-color: aquamarine;
}
.card{
text-align: center;
font-family: cursive;
box-shadow:0px 2px 5px black;
width:fit-content;
margin:5% 15%;
background-color: white;
}
button{
background-color: black;
width:100%;
padding:10px;
color:white;
font-size:larger;
cursor:pointer;
}
a{
padding:3px;
color:blue;
}
button:hover{
opacity:0.6;
width:50%;
transition:width 3s;
transition-timing-function:linear;
}
</style>
</head>
<body>
<div class="card">
<img src="rock.jpg">
<h1>Dwyane Johnson</h1>
<h4>WWE Wrestler</h4>
<p>Hollywood Actor</p>
<div>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
</div>
<p><button>Contact</button></p>
</div>
</body>
</html>
No comments :
Post a Comment