The figcaption tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The figcaption tag defines the caption for a figure element.
The figcaption tag can be placed as the first or last child of the figure element.
How to use the figcaption . tag
For example : use the figcaption tag to set the captopn, prepare the image file img.jpg in the same directory as the html file.
<!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>
Attributes of the figcaption . tag
The figcaption tag is provided with all the Global Attributes in HTML.