Answers for "how to label a image"

CSS
0

how to add label on image in html

<figure>
    <img src="tiquet.png" height="150" width="90">
    <figcaption>Your label goes here</figcaption>
</figure>
Posted by: Guest on October-21-2021
0

how to add an image to a label in css

.person_pic {
 margin-left: 201px;
display: inline-block;
font-weight:bold;
}
.person_pic label{
font-weight:bold;
}
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language