Add a html tag to the current element

add("div").attr("id", "mydiv").text("My Div")

Property definitions

html $ HTMLPage :: add
	# Add a html tag to the current element
	#
	# ~~~nitish
	# add("div").attr("id", "mydiv").text("My Div")
	# ~~~
	fun add(tag: String): HTMLTag do
		var node = new HTMLTag(tag)
		current.add(node)
		return node
	end
lib/html/html.nit:58,2--67,4