diff --git a/system/html.php b/system/html.php
index f7c53282..e4da34ee 100644
--- a/system/html.php
+++ b/system/html.php
@@ -35,6 +35,18 @@ class HTML {
return ''.PHP_EOL;
}
+ /**
+ * Generate a HTML span.
+ *
+ * @param string $value
+ * @param array $attributes
+ * @return string
+ */
+ public static function span($value, $attributes = array())
+ {
+ return ''.static::entities($value).'';
+ }
+
/**
* Generate a HTML link.
*