diff --git a/src/Tag/Html/Figure.php b/src/Tag/Html/Figure.php
new file mode 100644
index 00000000..777bf5be
--- /dev/null
+++ b/src/Tag/Html/Figure.php
@@ -0,0 +1,26 @@
+ PDF converter
+ * distributed under the OSL-3.0 License
+ *
+ * @package Html2pdf
+ * @author Laurent MINGUET
+ * @copyright 2017 Laurent MINGUET
+ */
+namespace Spipu\Html2Pdf\Tag\Html;
+
+/**
+ * Tag Figure
+ */
+class Figure extends Span
+{
+ /**
+ * @inheritdoc
+ */
+ public function getName()
+ {
+ return 'figure';
+ }
+}