January 24, 2019
How to Put Image into Text using HTML CSS in Hindi
If you want to put any image like JPG, PNG and GIF into any text it’s very easy so let’s start with me. I will give you complete guide how can you put image into text..
firstly you need to create a folder you can named it as you think, create a index.html file and type these codes and select the image you want to insert into text and also put it in your folder .
<!doctype html>
<html>
<head>
<title>Testing</title>
<style type="text/css">
h1{font-size:25em;text-align:center;color:#000;background:url(dk.gif);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
</style>
</head>
<body>
<h1>DK</h1>
</body>
</html>
for further information you can watch this video also and you can use the same code that I have given you above…and want to download source file Click Here