metodo semplice:
prendi l'immagine e con un editor di immagini tipo GIMP ci scrivi sopra "CLICCA QUI", poi l'immagine la inserisci nel tuo modulo html e la corredi di link.
Mentre usa l'esempio per questo metodo più avanzato:
questo il codice html:
<div class="caption">
<img src="esempio2.jpg" alt="" />
<span>
<strong>Lorem ipsum</strong>
Lorem ipsum dolor sit amet consectetuer eros
vivamus porta interdum venenatis.
</span>
</div>
questo il codice css:
.caption {
font-family: Verdana, sans-serif;
font-size: 10px;
float: left;
margin: 0;
padding: 0;
position: relative;
overflow: hidden;
}
.caption img {
float: left;
margin: 0;
padding: 0;
background: #fff;
border: none;
}
.caption span {
float: left;
margin: 0;
padding: 10px;
width: 100%;
color: #dedede;
background: #222; /* browser che non supportano rgba */
background: rgba(0,0,0,0.7);
position: absolute;
left: 0;
bottom: 0;
}
.caption span strong {
font-weight: bold;
font-size: 11px;
text-transform: uppercase;
display: block;
padding-bottom: 5px;
}