Create a HTML elements with the specifed type and attributes.

Property definitions

html $ HTMLTag :: with_attrs
	# Create a HTML elements with the specifed type and attributes.
	init with_attrs(tag: String, attrs: Map[String, String]) do
		init(tag)
		self.attrs = attrs
	end
lib/html/html.nit:124,2--128,4