index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hancie e-Learning Studio</title>
</head>
<body>
<style>
body{
font-family: arial;
font-size: 16px;
margin: 0;
background: #fff;
}
img{
width: 100%;
}
.image_transform_wrap{
padding: 100px 0;
}
.image_transform{
position: relative;
height: 500px;
overflow: hidden;
transform: skewY(7deg);
}
.image_transform img{
position: relative;
top: 50%;
transform: translateY(-50%) skewY(-7deg);
}
.image_transform_content{
position: absolute;
width: 100%;
left: 0;
top: 50%;
transform: translateY(-50%) skewY(-7deg);
font-size: 50px;
color: #fff;
text-shadow: 1px 1px 1px #000;
z-index: 1;
text-align: center;
}
.image_transform_content h2{
margin: 0;
padding: 20px;
position: relative;
}
.image_transform_content h2:after,
.image_transform_content h2:before{
content: "";
position: absolute;
top: 0;
left: 50%;
width: 400px;
height: 3px;
background:#fff;
transform: translateX(-50%);
}
.image_transform_content h2:before{
top: auto;
bottom: 0
}
</style>
<div class="image_transform_wrap">
<div class="image_transform">
<img src="Hancie-Phago.jpg" alt="">
<div class="image_transform_content">
<h2>Hancie e-Learning Studio</h2>
</div>
</div>
</div>
</body>
</html>