Filter (Advanced Search)
Downloads
0
Views
229
Video

Video is not available... Embedded is previous playlist.

Details

The <figure> tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc.

The <figcaption> tag defines a caption for a <figure> element. The <figcaption> element can be placed as the first or as the last child of a <figure> element.

The <img> element defines the actual image/illustration.


<!DOCTYPE html>
<html>
<head>
<title>figure and figcaption Elements</title>
</head>
<body>

<h2>ਸਰਕਾਰੀ ਸੀਨੀਅਰ ਸੈਕੰਡਰੀ ਸਕੂਲ, ਖੋਖਰ</h2>

figure and figcaption Elements

<figure>
  <img src="/images/welcome_school.gif" alt="cat" style="width:100%">
  <figcaption>Fig.1 - GSSS KHOKHAR, Sri Muktsar Sahib.</figcaption>
</figure>

</body>
</html>



Ad