The figure tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The <figure> tag specifies self-contained content, such as illustrations, diagrams, photos, code lists, etc…
How to use the figure card
Example : Use the figure tag to add illustrations to the article, prepare the image file at the same level as the directory of the html file.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</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="The Pulpit Rock" width="304" height="228"> </figure> </body> </html>
Attributes of the figure tag
The figure tag is provided with Global Attributes in HTML attributes.