我有以下代码,用于呈现包含文本的图像。整个组件(图像+文本)是一个链接。我在我的页面中多次使用此代码,但他们没有从页内分析中获取任何数据。你能帮忙吗?如果你需要css,请告诉我。感谢
<a href="/mypage/">
<div class="">
<figure>
<img class="lazy" src="image.jpg" />
<noscript><img src="image.jpg" width="500" height="295" alt="" /></noscript>
<figcaption class="">
<h2 class="Title">Types of fruits</h2>
</figcaption>
</figure>
<p>Avocados, Strawberries, Melons and Pineapples</p>
</div>
</a>