I have successfully implemented code that allows users to hover over an image and view text beside it. My challenge now is to adjust the font size from its default setting. I have come across conflicting opinions online, with some saying that it cannot be achieved. I would appreciate hearing from others on this matter. Here is the code snippet:
HTML
<img class="image" src="../../assets/images/image.PNG" alt="" title="
The quick, brown fox jumps
over a lazy dog. DJs flock
by when MTV ax quiz prog.
Junk MTV quiz graced by
"></h3>
CSS
.image {
float: right;
padding-right: 50px;
transform: scale(.8);
**font-family: Univers-Next-Pro-Regular; - the desired font**
}