module deepmagic.dom.tags.html5;

import deepmagic.dom;

class Html5Tag(string tag_name = "") : Tag{
	this(){
		super(tag_name);
	}
}