A tag figcaption em HTML
- 24-07-2022
- Trung Minh
- 0 Comments
A tag figcaption define a legenda para um elemento de figura.
A tag figcaption pode ser colocada como o primeiro ou último filho do elemento figure.
Como usar a tag figcaption .
Por exemplo : use a tag figcaption para definir o captopn, prepare o arquivo de imagem img.jpg no mesmo diretório do arquivo html.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại freetuts.net</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại freetuts.net</h1> <p> Freetuts.net là một blog cá nhân được xây dựng với mục đích chia sẻ kiến thức về lập trình web nói chung và lập trình nói riêng. </p> <figure> <img src="img.jpg" alt="hinh-anh" width="304" height="228"> <figcaption>Đoạn text để mô tả hình ảnh!</figcaption> </figure> </body> </html>
Atributos da tag figcaption .
A tag figcaption é fornecida com todos os Atributos Globais em HTML.