I am currently displaying images on my website that are also links to different pages.
How can I add a text description below each of the clickable links?
The code I have written is below.
Thank you for your help!
<section>
<ul class="film_strip">
<a href="drawing.html"><li><img src="Img\drawing.png" width="130" height="130" alt="Learn to draw" /></li></a>
<a href="art.html"><li><img src="Img\art.png" width="130" height="130" alt="art Design and creation" /></li></a>
<a href="design.html"><li><img src="Img\designart.png" width="130" height="130" alt="design" /></li></a>
</ul>
</section>
.film_strip li {
float: left;
list-style-type: none;
}
.film_strip li img {
float: left;
background: #DEE0E3;
padding: 10px;
margin: 5px;
border: 1px solid #AAA;
color: #3C3C3D;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}