CSS Assignment ( card hover effect )
Question: Create two cards and add hover ( on hovering the shadow effect will appear) to them.
<!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="style.css">
</head>
<body>
<div class="card">
<div id="man"></div>
<div class="desc">
<h3>Dheeraj Singh</h3>
<p>Data Analyst (Barclays)</p>
</div>
</div>
<div class="card">
<div id="woman"></div>
<div class="desc">
<h3>Diana John</h3>
<p>Software Engieer</p>
</div>
</div>
</body>
</html>
.card{
height: 250px;
width: 200px;
border: 4px solid black;
border-radius: 6px;
display: inline-block;
margin: 10px 10px;
}
.desc{
padding:0px 5px;
}
#man{
height: 150px;
width: 200px;
background-image: url("man.jpg");
background-size: cover;
}
#woman{
height: 150px;
width: 200px;
background-image: url("woman.jpg");
background-size: cover;
}