Image inside text.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Awesome Text Effect</title>
<link rel="stylesheet" href="style.css">
<style type="text/css">
body{
margin: 0;
padding: 0;
font-family: "Montserrat",sans-serif;
background: #333;
}
h1{
font-size: 200px;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
margin: 0;
background: url(bg.jpg) 50% 50%;
background-size: cover;
-webkit-text-fill-color:transparent;
-webkit-background-clip:text;
}
</style>
</head>
<body>
<h1>Rahul</h1>
</body>
</html>