Data Attribute

by Krishna Ananthi

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);
}