Skip to content

Instantly share code, notes, and snippets.

@kresnasatya
Created March 22, 2019 04:35
Show Gist options
  • Save kresnasatya/aa8b2a82959927d2d2e2813447ce2a20 to your computer and use it in GitHub Desktop.
Save kresnasatya/aa8b2a82959927d2d2e2813447ce2a20 to your computer and use it in GitHub Desktop.
Figure and Figcaption tags
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Figure-figcaption - Web Semantics</title>
</head>
<body>
<h2>Places to Visit</h2>
<p>Puglia's most famous sight is the unique conical houses (Trulli) found in the area around Alberobello, a declared UNESCO World Heritage Site.</p>
<figure>
<img src="./img/pic_trulli.jpg" alt="Trulli" style="width:100%">
<figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>
<footer>
<p>&copy; w3schools.com</p>
</footer>
<br>
<a href="./index.html">Back</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment