Created
March 22, 2019 04:35
-
-
Save kresnasatya/aa8b2a82959927d2d2e2813447ce2a20 to your computer and use it in GitHub Desktop.
Figure and Figcaption tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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>© 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