Data Attribute
HTML
<div class="prof" data-id="1" data-name="hello ananthi" data-youtube-name="hello ananthi this is youtube">
data attribute
</div>
CSS
.prof:hover::before{
content: attr(data-name);
}
<div class="prof" data-id="1" data-name="hello ananthi" data-youtube-name="hello ananthi this is youtube">
data attribute
</div>
.prof:hover::before{
content: attr(data-name);
}