Last active
February 4, 2016 21:29
-
-
Save purplefish32/ef7458d33c3b7e1b6649 to your computer and use it in GitHub Desktop.
HTML figure with figcaption
This file contains 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="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Figure</title> | |
</head> | |
<body> | |
<div> | |
<figure> | |
<img src="img/banana.jpg" alt="Bananes"> | |
<figcaption>Des bananes mûres.</figcaption> | |
</figure> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment