Answers for "img with label"

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

<div class="person_pic">
    <label>Please upload your photo</label>
    <input  type='file' name="image" onchange="readURL(this);" />
    <img id="blah" src="#" alt="your image" />
    </div>
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language