public static string CreateInput(string type, string name, string value)
 {
     ElementBuilder input = new ElementBuilder("input");
     input.AddAttribute("type", type);
     input.AddAttribute("name", name);
     input.AddAttribute("value", value);
     return input.ToString();
 }
 public static string CreateURL(string href, string title, string text)
 {
     ElementBuilder url = new ElementBuilder("url");
     url.AddAttribute("href", href);
     url.AddAttribute("title", title);
     url.AddContent(text);
     return url.ToString();
 }
 public static string CreateImage(string src, string alt, string title)
 {
     ElementBuilder image = new ElementBuilder("img");
     image.AddAttribute("src", src);
     image.AddAttribute("alt", alt);
     image.AddAttribute("title", title);
     return image.ToString();
 }