public virtual HtmlBaseTag AddTag(string name, string text = null)
        {
            HtmlBaseTag inerTag = new HtmlBaseTag(name, text);
            _tagContent.Add(inerTag);

            return inerTag;
        }
 public virtual HtmlBaseTag AddTag(HtmlBaseTag inerTag)
 {
     _tagContent.Add(inerTag);
     return inerTag;
 }