/// <summary>
 /// Set the type attribute.
 /// </summary>
 public static FluentTagBuilder Type(this FluentTagBuilder @this, string value)
 => @this.Attribute("type", value);
 /// <summary>
 /// Set the class attribute.
 /// </summary>
 public static FluentTagBuilder Class(this FluentTagBuilder @this, string value)
 => @this.Attribute("class", value);
 /// <summary>
 /// Set the  style attribute.
 /// </summary>
 public static FluentTagBuilder Style(this FluentTagBuilder @this, string value)
 => @this.Attribute("style", value);