+ 2
How do you put text under a photo in web
How do you put text under a photo in web https://code.sololearn.com/WODqdcze5d3z/?ref=app
1 Respuesta
0
Ok, so just add the following code after the
</img>...
<p class="text">Text goes here</p>
If you want more space, you can use a <br /> for each extra line you want.
You can then style the text with the class="text" or just style the <p>
You can also use <textarea> but that's typically for a large area of text.
Hope this helps.