Class Html
  
  Represents HTML that can be written to a stream
Assembly: Eighty.dll
  Syntax
  
    public abstract class Html : object
   
  Properties
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  CanWriteAsync
  
  
  Declaration
  
    public bool CanWriteAsync { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | Boolean | A  indicating whether this Html can write itself asynchronously | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Empty
  
  
  Declaration
  
    public static Html Empty { get; }
   
  Property Value
  
  Methods
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  _(Html[])
  Put some siblings next to each other.
Declaration
  
    public static Html _(params Html[] siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  _(IEnumerable<Html>)
  Put some siblings next to each other.
Declaration
  
    public static Html _(IEnumerable<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  _(ImmutableArray<Html>)
  Put some siblings next to each other.
Declaration
  
    public static Html _(ImmutableArray<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | ImmutableArray<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  _(ImmutableList<Html>)
  Put some siblings next to each other.
Declaration
  
    public static Html _(ImmutableList<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | ImmutableList<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  _(List<Html>)
  Put some siblings next to each other.
Declaration
  
    public static Html _(List<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | List<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  a(Attr[])
  
  
  Declaration
  
    public static TagBuilder a(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  a(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder a(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  a(String, String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder a(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string href = null, string rel = null, string target = null, string type = null, string download = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  a_(Html[])
  Build an a element without any attributes.
Declaration
  
    public static Html a_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  a_(IEnumerable<Html>)
  Build an a element without any attributes.
Declaration
  
    public static Html a_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  abbr(Attr[])
  
  
  Declaration
  
    public static TagBuilder abbr(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  abbr(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder abbr(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  abbr(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder abbr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  abbr_(Html[])
  Build an abbr element without any attributes.
Declaration
  
    public static Html abbr_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  abbr_(IEnumerable<Html>)
  Build an abbr element without any attributes.
Declaration
  
    public static Html abbr_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  address(Attr[])
  Build an address element.
Declaration
  
    public static TagBuilder address(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  address(IEnumerable<Attr>)
  Build an address element.
Declaration
  
    public static TagBuilder address(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  address(String, String, String, String, String, String)
  Build an address element.
Declaration
  
    public static TagBuilder address(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  address_(Html[])
  Build an address element without any attributes.
Declaration
  
    public static Html address_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  address_(IEnumerable<Html>)
  Build an address element without any attributes.
Declaration
  
    public static Html address_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  article(Attr[])
  Build an article element.
Declaration
  
    public static TagBuilder article(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  article(IEnumerable<Attr>)
  Build an article element.
Declaration
  
    public static TagBuilder article(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  article(String, String, String, String, String, String)
  Build an article element.
Declaration
  
    public static TagBuilder article(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  article_(Html[])
  Build an article element without any attributes.
Declaration
  
    public static Html article_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  article_(IEnumerable<Html>)
  Build an article element without any attributes.
Declaration
  
    public static Html article_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  aside(Attr[])
  
  
  Declaration
  
    public static TagBuilder aside(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  aside(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder aside(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  aside(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder aside(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  aside_(Html[])
  Build an aside element without any attributes.
Declaration
  
    public static Html aside_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  aside_(IEnumerable<Html>)
  Build an aside element without any attributes.
Declaration
  
    public static Html aside_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  audio(Attr[])
  
  
  Declaration
  
    public static TagBuilder audio(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  audio(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder audio(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  audio(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean)
  
  
  Declaration
  
    public static TagBuilder audio(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string preload = null, string volume = null, bool autoplay = false, bool loop = false, bool muted = false, bool controls = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  audio_(Html[])
  Build an audio element without any attributes.
Declaration
  
    public static Html audio_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  audio_(IEnumerable<Html>)
  Build an audio element without any attributes.
Declaration
  
    public static Html audio_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  b(Attr[])
  
  
  Declaration
  
    public static TagBuilder b(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  b(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder b(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  b(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder b(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  b_(Html[])
  Build a b element without any attributes.
Declaration
  
    public static Html b_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  b_(IEnumerable<Html>)
  Build a b element without any attributes.
Declaration
  
    public static Html b_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  base(Attr[])
  
  
  Declaration
  
    public static Html base(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  base(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html base(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  base(String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html base(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string href = null, string target = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdi(Attr[])
  
  
  Declaration
  
    public static TagBuilder bdi(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdi(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder bdi(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdi(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder bdi(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string dir = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdi_(Html[])
  Build a bdi element without any attributes.
Declaration
  
    public static Html bdi_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdi_(IEnumerable<Html>)
  Build a bdi element without any attributes.
Declaration
  
    public static Html bdi_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdo(Attr[])
  
  
  Declaration
  
    public static TagBuilder bdo(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdo(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder bdo(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdo(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder bdo(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string dir = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdo_(Html[])
  Build a bdo element without any attributes.
Declaration
  
    public static Html bdo_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  bdo_(IEnumerable<Html>)
  Build a bdo element without any attributes.
Declaration
  
    public static Html bdo_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  blockquote(Attr[])
  Build a blockquote element.
Declaration
  
    public static TagBuilder blockquote(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  blockquote(IEnumerable<Attr>)
  Build a blockquote element.
Declaration
  
    public static TagBuilder blockquote(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  blockquote(String, String, String, String, String, String)
  Build a blockquote element.
Declaration
  
    public static TagBuilder blockquote(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  blockquote_(Html[])
  Build a blockquote element without any attributes.
Declaration
  
    public static Html blockquote_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  blockquote_(IEnumerable<Html>)
  Build a blockquote element without any attributes.
Declaration
  
    public static Html blockquote_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  body(Attr[])
  
  
  Declaration
  
    public static TagBuilder body(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  body(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder body(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  body(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder body(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  body_(Html[])
  Build a body element without any attributes.
Declaration
  
    public static Html body_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  body_(IEnumerable<Html>)
  Build a body element without any attributes.
Declaration
  
    public static Html body_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  br(Attr[])
  
  
  Declaration
  
    public static Html br(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  br(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html br(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  br(String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html br(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Builder(Func<HtmlBuilder>)
  
  
  Declaration
  
    public static Html Builder(Func<HtmlBuilder> builderFactory)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder button(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder button(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder button(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string type = null, string value = null, bool autofocus = false, bool disabled = false, string src = null, string height = null, string width = null, string form = null, string formaction = null, string formmethod = null, string formtarget = null, string formenctype = null, bool formnovalidate = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a button element without any attributes.
Declaration
  
    public static Html button_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a button element without any attributes.
Declaration
  
    public static Html button_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  canvas(Attr[])
  
  
  Declaration
  
    public static TagBuilder canvas(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  canvas(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder canvas(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  canvas(String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder canvas(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string height = null, string width = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  canvas_(Html[])
  Build a canvas element without any attributes.
Declaration
  
    public static Html canvas_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  canvas_(IEnumerable<Html>)
  Build a canvas element without any attributes.
Declaration
  
    public static Html canvas_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  caption(Attr[])
  
  
  Declaration
  
    public static TagBuilder caption(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  caption(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder caption(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  caption(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder caption(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  caption_(Html[])
  Build a caption element without any attributes.
Declaration
  
    public static Html caption_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  caption_(IEnumerable<Html>)
  Build a caption element without any attributes.
Declaration
  
    public static Html caption_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  cite(Attr[])
  
  
  Declaration
  
    public static TagBuilder cite(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  cite(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder cite(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  cite(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder cite(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  cite_(Html[])
  Build a cite element without any attributes.
Declaration
  
    public static Html cite_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  cite_(IEnumerable<Html>)
  Build a cite element without any attributes.
Declaration
  
    public static Html cite_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  code(Attr[])
  
  
  Declaration
  
    public static TagBuilder code(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  code(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder code(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  code(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder code(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  code_(Html[])
  Build a code element without any attributes.
Declaration
  
    public static Html code_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  code_(IEnumerable<Html>)
  Build a code element without any attributes.
Declaration
  
    public static Html code_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  col(Attr[])
  
  
  Declaration
  
    public static TagBuilder col(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  col(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder col(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  col(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder col(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string span = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  col_(Html[])
  Build a col element without any attributes.
Declaration
  
    public static Html col_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  col_(IEnumerable<Html>)
  Build a col element without any attributes.
Declaration
  
    public static Html col_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  colgroup(Attr[])
  Build a colgroup element.
Declaration
  
    public static TagBuilder colgroup(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  colgroup(IEnumerable<Attr>)
  Build a colgroup element.
Declaration
  
    public static TagBuilder colgroup(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  colgroup(String, String, String, String, String, String, String)
  Build a colgroup element.
Declaration
  
    public static TagBuilder colgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string span = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  colgroup_(Html[])
  Build a colgroup element without any attributes.
Declaration
  
    public static Html colgroup_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  colgroup_(IEnumerable<Html>)
  Build a colgroup element without any attributes.
Declaration
  
    public static Html colgroup_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  data(Attr[])
  
  
  Declaration
  
    public static TagBuilder data(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  data(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder data(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  data(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder data(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  data_(Html[])
  Build a data element without any attributes.
Declaration
  
    public static Html data_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  data_(IEnumerable<Html>)
  Build a data element without any attributes.
Declaration
  
    public static Html data_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  datalist(Attr[])
  Build a datalist element.
Declaration
  
    public static TagBuilder datalist(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  datalist(IEnumerable<Attr>)
  Build a datalist element.
Declaration
  
    public static TagBuilder datalist(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  datalist(String, String, String, String, String, String)
  Build a datalist element.
Declaration
  
    public static TagBuilder datalist(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  datalist_(Html[])
  Build a datalist element without any attributes.
Declaration
  
    public static Html datalist_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  datalist_(IEnumerable<Html>)
  Build a datalist element without any attributes.
Declaration
  
    public static Html datalist_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dd(Attr[])
  
  
  Declaration
  
    public static TagBuilder dd(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dd(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder dd(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dd(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder dd(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dd_(Html[])
  Build a dd element without any attributes.
Declaration
  
    public static Html dd_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dd_(IEnumerable<Html>)
  Build a dd element without any attributes.
Declaration
  
    public static Html dd_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  details(Attr[])
  
  
  Declaration
  
    public static TagBuilder details(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  details(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder details(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  details(String, String, String, String, String, String, Boolean)
  
  
  Declaration
  
    public static TagBuilder details(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, bool open = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  details_(Html[])
  Build a details element without any attributes.
Declaration
  
    public static Html details_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  details_(IEnumerable<Html>)
  Build a details element without any attributes.
Declaration
  
    public static Html details_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dfn(Attr[])
  
  
  Declaration
  
    public static TagBuilder dfn(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dfn(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder dfn(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dfn(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder dfn(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dfn_(Html[])
  Build a dfn element without any attributes.
Declaration
  
    public static Html dfn_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dfn_(IEnumerable<Html>)
  Build a dfn element without any attributes.
Declaration
  
    public static Html dfn_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dialog(Attr[])
  
  
  Declaration
  
    public static TagBuilder dialog(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dialog(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder dialog(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dialog(String, String, String, String, String, String, Boolean)
  
  
  Declaration
  
    public static TagBuilder dialog(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, bool open = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dialog_(Html[])
  Build a dialog element without any attributes.
Declaration
  
    public static Html dialog_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dialog_(IEnumerable<Html>)
  Build a dialog element without any attributes.
Declaration
  
    public static Html dialog_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  div(Attr[])
  
  
  Declaration
  
    public static TagBuilder div(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  div(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder div(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  div(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder div(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  div_(Html[])
  Build a div element without any attributes.
Declaration
  
    public static Html div_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  div_(IEnumerable<Html>)
  Build a div element without any attributes.
Declaration
  
    public static Html div_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dl(Attr[])
  
  
  Declaration
  
    public static TagBuilder dl(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dl(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder dl(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dl(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder dl(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dl_(Html[])
  Build a dl element without any attributes.
Declaration
  
    public static Html dl_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dl_(IEnumerable<Html>)
  Build a dl element without any attributes.
Declaration
  
    public static Html dl_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  doctype()
  Write the <!DOCTYPE HTML> preamble.
Declaration
  
    public static Html doctype()
   
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  doctypeHtml_(Html[])
  Write the <!DOCTYPE HTML> preamble and create an html tag with children.
Declaration
  
    public static Html doctypeHtml_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dt(Attr[])
  
  
  Declaration
  
    public static TagBuilder dt(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dt(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder dt(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dt(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder dt(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dt_(Html[])
  Build a dt element without any attributes.
Declaration
  
    public static Html dt_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  dt_(IEnumerable<Html>)
  Build a dt element without any attributes.
Declaration
  
    public static Html dt_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  em(Attr[])
  
  
  Declaration
  
    public static TagBuilder em(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  em(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder em(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  em(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder em(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  em_(Html[])
  Build an em element without any attributes.
Declaration
  
    public static Html em_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  em_(IEnumerable<Html>)
  Build an em element without any attributes.
Declaration
  
    public static Html em_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  embed(Attr[])
  
  
  Declaration
  
    public static Html embed(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  embed(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html embed(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  embed(String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html embed(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null, string height = null, string width = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  fieldset(Attr[])
  Build a fieldset element.
Declaration
  
    public static TagBuilder fieldset(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  fieldset(IEnumerable<Attr>)
  Build a fieldset element.
Declaration
  
    public static TagBuilder fieldset(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  fieldset(String, String, String, String, String, String, String, Boolean, String)
  Build a fieldset element.
Declaration
  
    public static TagBuilder fieldset(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, bool disabled = false, string form = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  fieldset_(Html[])
  Build a fieldset element without any attributes.
Declaration
  
    public static Html fieldset_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  fieldset_(IEnumerable<Html>)
  Build a fieldset element without any attributes.
Declaration
  
    public static Html fieldset_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  figcaption(Attr[])
  Build a figcaption element.
Declaration
  
    public static TagBuilder figcaption(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  figcaption(IEnumerable<Attr>)
  Build a figcaption element.
Declaration
  
    public static TagBuilder figcaption(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  figcaption(String, String, String, String, String, String)
  Build a figcaption element.
Declaration
  
    public static TagBuilder figcaption(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  figcaption_(Html[])
  Build a figcaption element without any attributes.
Declaration
  
    public static Html figcaption_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  figcaption_(IEnumerable<Html>)
  Build a figcaption element without any attributes.
Declaration
  
    public static Html figcaption_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder figure(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder figure(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder figure(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a figure element without any attributes.
Declaration
  
    public static Html figure_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a figure element without any attributes.
Declaration
  
    public static Html figure_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder footer(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder footer(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder footer(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a footer element without any attributes.
Declaration
  
    public static Html footer_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a footer element without any attributes.
Declaration
  
    public static Html footer_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder form(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder form(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder form(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string action = null, string method = null, string autocomplete = null, string target = null, string enctype = null, bool novalidate = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a form element without any attributes.
Declaration
  
    public static Html form_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a form element without any attributes.
Declaration
  
    public static Html form_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h1(Attr[])
  
  
  Declaration
  
    public static TagBuilder h1(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h1(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h1(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h1(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h1(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h1_(Html[])
  Build an h1 element without any attributes.
Declaration
  
    public static Html h1_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h1_(IEnumerable<Html>)
  Build an h1 element without any attributes.
Declaration
  
    public static Html h1_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h2(Attr[])
  
  
  Declaration
  
    public static TagBuilder h2(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h2(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h2(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h2(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h2(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h2_(Html[])
  Build an h2 element without any attributes.
Declaration
  
    public static Html h2_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h2_(IEnumerable<Html>)
  Build an h2 element without any attributes.
Declaration
  
    public static Html h2_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h3(Attr[])
  
  
  Declaration
  
    public static TagBuilder h3(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h3(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h3(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h3(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h3(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h3_(Html[])
  Build an h3 element without any attributes.
Declaration
  
    public static Html h3_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h3_(IEnumerable<Html>)
  Build an h3 element without any attributes.
Declaration
  
    public static Html h3_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h4(Attr[])
  
  
  Declaration
  
    public static TagBuilder h4(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h4(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h4(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h4(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h4(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h4_(Html[])
  Build an h4 element without any attributes.
Declaration
  
    public static Html h4_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h4_(IEnumerable<Html>)
  Build an h4 element without any attributes.
Declaration
  
    public static Html h4_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h5(Attr[])
  
  
  Declaration
  
    public static TagBuilder h5(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h5(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h5(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h5(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h5(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h5_(Html[])
  Build an h5 element without any attributes.
Declaration
  
    public static Html h5_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h5_(IEnumerable<Html>)
  Build an h5 element without any attributes.
Declaration
  
    public static Html h5_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h6(Attr[])
  
  
  Declaration
  
    public static TagBuilder h6(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h6(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder h6(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h6(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder h6(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h6_(Html[])
  Build an h6 element without any attributes.
Declaration
  
    public static Html h6_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  h6_(IEnumerable<Html>)
  Build an h6 element without any attributes.
Declaration
  
    public static Html h6_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  head(Attr[])
  
  
  Declaration
  
    public static TagBuilder head(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  head(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder head(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  head(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder head(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  head_(Html[])
  Build a head element without any attributes.
Declaration
  
    public static Html head_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  head_(IEnumerable<Html>)
  Build a head element without any attributes.
Declaration
  
    public static Html head_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder header(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder header(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder header(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a header element without any attributes.
Declaration
  
    public static Html header_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a header element without any attributes.
Declaration
  
    public static Html header_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hgroup(Attr[])
  
  
  Declaration
  
    public static TagBuilder hgroup(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hgroup(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder hgroup(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hgroup(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder hgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hgroup_(Html[])
  Build a hgroup element without any attributes.
Declaration
  
    public static Html hgroup_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hgroup_(IEnumerable<Html>)
  Build a hgroup element without any attributes.
Declaration
  
    public static Html hgroup_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hr(Attr[])
  
  
  Declaration
  
    public static Html hr(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hr(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html hr(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  hr(String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html hr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  html(Attr[])
  
  
  Declaration
  
    public static TagBuilder html(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  html(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder html(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  html(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder html(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string xmlns = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  html_(Html[])
  Build an html element without any attributes.
Declaration
  
    public static Html html_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  html_(IEnumerable<Html>)
  Build an html element without any attributes.
Declaration
  
    public static Html html_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  i(Attr[])
  
  
  Declaration
  
    public static TagBuilder i(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  i(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder i(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  i(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder i(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  i_(Html[])
  Build an i element without any attributes.
Declaration
  
    public static Html i_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  i_(IEnumerable<Html>)
  Build an i element without any attributes.
Declaration
  
    public static Html i_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  img(Attr[])
  
  
  Declaration
  
    public static Html img(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  img(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html img(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  img(String, String, String, String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html img(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string alt = null, string height = null, string width = null, string srcset = null, string sizes = null, string crossorigin = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder input(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder input(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder input(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string type = null, string multiple = null, string value = null, string placeholder = null, string size = null, string autocomplete = null, string list = null, bool autofocus = false, bool checked = false, bool disabled = false, bool readonly = false, bool required = false, string src = null, string height = null, string width = null, string max = null, string min = null, string step = null, string maxlength = null, string minlength = null, string pattern = null, string form = null, string formaction = null, string formmethod = null, string formtarget = null, string formenctype = null, bool formnovalidate = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build an input element without any attributes.
Declaration
  
    public static Html input_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build an input element without any attributes.
Declaration
  
    public static Html input_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  kbd(Attr[])
  
  
  Declaration
  
    public static TagBuilder kbd(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  kbd(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder kbd(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  kbd(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder kbd(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  kbd_(Html[])
  Build a kbd element without any attributes.
Declaration
  
    public static Html kbd_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  kbd_(IEnumerable<Html>)
  Build a kbd element without any attributes.
Declaration
  
    public static Html kbd_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  label(Attr[])
  
  
  Declaration
  
    public static TagBuilder label(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  label(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder label(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  label(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder label(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string for = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  label_(Html[])
  Build a label element without any attributes.
Declaration
  
    public static Html label_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  label_(IEnumerable<Html>)
  Build a label element without any attributes.
Declaration
  
    public static Html label_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  legend(Attr[])
  
  
  Declaration
  
    public static TagBuilder legend(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  legend(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder legend(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  legend(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder legend(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  legend_(Html[])
  Build a legend element without any attributes.
Declaration
  
    public static Html legend_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  legend_(IEnumerable<Html>)
  Build a legend element without any attributes.
Declaration
  
    public static Html legend_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  li(Attr[])
  
  
  Declaration
  
    public static TagBuilder li(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  li(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder li(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  li(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder li(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  li_(Html[])
  Build an li element without any attributes.
Declaration
  
    public static Html li_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  li_(IEnumerable<Html>)
  Build an li element without any attributes.
Declaration
  
    public static Html li_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  link(Attr[])
  
  
  Declaration
  
    public static Html link(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  link(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html link(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  link(String, String, String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html link(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string crossorigin = null, string rel = null, string href = null, string type = null, string media = null, string sizes = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  main(Attr[])
  
  
  Declaration
  
    public static TagBuilder main(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  main(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder main(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  main(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder main(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  main_(Html[])
  Build a main element without any attributes.
Declaration
  
    public static Html main_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  main_(IEnumerable<Html>)
  Build a main element without any attributes.
Declaration
  
    public static Html main_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  mark(Attr[])
  
  
  Declaration
  
    public static TagBuilder mark(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  mark(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder mark(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  mark(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder mark(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  mark_(Html[])
  Build a mark element without any attributes.
Declaration
  
    public static Html mark_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  mark_(IEnumerable<Html>)
  Build a mark element without any attributes.
Declaration
  
    public static Html mark_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder menu(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder menu(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder menu(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string label = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menu element without any attributes.
Declaration
  
    public static Html menu_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menu element without any attributes.
Declaration
  
    public static Html menu_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menuitem element.
Declaration
  
    public static TagBuilder menuitem(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menuitem element.
Declaration
  
    public static TagBuilder menuitem(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menuitem element.
Declaration
  
    public static TagBuilder menuitem(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string label = null, string command = null, string icon = null, string radiogroup = null, bool disabled = false, bool default = false, bool checked = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menuitem element without any attributes.
Declaration
  
    public static Html menuitem_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a menuitem element without any attributes.
Declaration
  
    public static Html menuitem_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static Html meta(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static Html meta(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static Html meta(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string charset = null, string target = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  meter(Attr[])
  
  
  Declaration
  
    public static TagBuilder meter(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  meter(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder meter(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  meter(String, String, String, String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder meter(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null, string form = null, string max = null, string min = null, string low = null, string high = null, string optimum = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  meter_(Html[])
  Build a meter element without any attributes.
Declaration
  
    public static Html meter_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  meter_(IEnumerable<Html>)
  Build a meter element without any attributes.
Declaration
  
    public static Html meter_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  nav(Attr[])
  
  
  Declaration
  
    public static TagBuilder nav(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  nav(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder nav(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  nav(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder nav(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  nav_(Html[])
  Build a nav element without any attributes.
Declaration
  
    public static Html nav_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  nav_(IEnumerable<Html>)
  Build a nav element without any attributes.
Declaration
  
    public static Html nav_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  noscript(Attr[])
  Build a noscript element.
Declaration
  
    public static TagBuilder noscript(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  noscript(IEnumerable<Attr>)
  Build a noscript element.
Declaration
  
    public static TagBuilder noscript(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  noscript(String, String, String, String, String, String)
  Build a noscript element.
Declaration
  
    public static TagBuilder noscript(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  noscript_(Html[])
  Build a noscript element without any attributes.
Declaration
  
    public static Html noscript_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  noscript_(IEnumerable<Html>)
  Build a noscript element without any attributes.
Declaration
  
    public static Html noscript_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  object(Attr[])
  
  
  Declaration
  
    public static TagBuilder object(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  object(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder object(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  object(String, String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder object(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string data = null, string height = null, string width = null, string name = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  object_(Html[])
  Build an object element without any attributes.
Declaration
  
    public static Html object_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  object_(IEnumerable<Html>)
  Build an object element without any attributes.
Declaration
  
    public static Html object_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ol(Attr[])
  
  
  Declaration
  
    public static TagBuilder ol(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ol(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder ol(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ol(String, String, String, String, String, String, String, Boolean, String)
  
  
  Declaration
  
    public static TagBuilder ol(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, bool reversed = false, string start = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ol_(Html[])
  Build an ol element without any attributes.
Declaration
  
    public static Html ol_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ol_(IEnumerable<Html>)
  Build an ol element without any attributes.
Declaration
  
    public static Html ol_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  optgroup(Attr[])
  Build an optgroup element.
Declaration
  
    public static TagBuilder optgroup(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  optgroup(IEnumerable<Attr>)
  Build an optgroup element.
Declaration
  
    public static TagBuilder optgroup(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  optgroup(String, String, String, String, String, String, String, Boolean)
  Build an optgroup element.
Declaration
  
    public static TagBuilder optgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string label = null, bool disabled = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  optgroup_(Html[])
  Build an optgroup element without any attributes.
Declaration
  
    public static Html optgroup_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  optgroup_(IEnumerable<Html>)
  Build an optgroup element without any attributes.
Declaration
  
    public static Html optgroup_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  option(Attr[])
  
  
  Declaration
  
    public static TagBuilder option(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  option(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder option(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  option(String, String, String, String, String, String, String, String, Boolean, Boolean)
  
  
  Declaration
  
    public static TagBuilder option(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string label = null, string value = null, bool disabled = false, bool selected = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  option_(Html[])
  Build an option element without any attributes.
Declaration
  
    public static Html option_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  option_(IEnumerable<Html>)
  Build an option element without any attributes.
Declaration
  
    public static Html option_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  output(Attr[])
  
  
  Declaration
  
    public static TagBuilder output(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  output(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder output(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  output(String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder output(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string for = null, string name = null, string form = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  output_(Html[])
  Build an output element without any attributes.
Declaration
  
    public static Html output_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  output_(IEnumerable<Html>)
  Build an output element without any attributes.
Declaration
  
    public static Html output_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  p(Attr[])
  
  
  Declaration
  
    public static TagBuilder p(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  p(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder p(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  p(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder p(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  p_(Html[])
  Build a p element without any attributes.
Declaration
  
    public static Html p_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  p_(IEnumerable<Html>)
  Build a p element without any attributes.
Declaration
  
    public static Html p_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  param(Attr[])
  
  
  Declaration
  
    public static Html param(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  param(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html param(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  param(String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html param(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string value = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  picture(Attr[])
  
  
  Declaration
  
    public static TagBuilder picture(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  picture(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder picture(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  picture(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder picture(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  picture_(Html[])
  Build a picture element without any attributes.
Declaration
  
    public static Html picture_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  picture_(IEnumerable<Html>)
  Build a picture element without any attributes.
Declaration
  
    public static Html picture_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  pre(Attr[])
  
  
  Declaration
  
    public static TagBuilder pre(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  pre(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder pre(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  pre(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder pre(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  pre_(Html[])
  Build a pre element without any attributes.
Declaration
  
    public static Html pre_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  pre_(IEnumerable<Html>)
  Build a pre element without any attributes.
Declaration
  
    public static Html pre_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  progress(Attr[])
  Build a progress element.
Declaration
  
    public static TagBuilder progress(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  progress(IEnumerable<Attr>)
  Build a progress element.
Declaration
  
    public static TagBuilder progress(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  progress(String, String, String, String, String, String, String, String)
  Build a progress element.
Declaration
  
    public static TagBuilder progress(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null, string max = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  progress_(Html[])
  Build a progress element without any attributes.
Declaration
  
    public static Html progress_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  progress_(IEnumerable<Html>)
  Build a progress element without any attributes.
Declaration
  
    public static Html progress_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  q(Attr[])
  
  
  Declaration
  
    public static TagBuilder q(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  q(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder q(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  q(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder q(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string cite = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  q_(Html[])
  Build a q element without any attributes.
Declaration
  
    public static Html q_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  q_(IEnumerable<Html>)
  Build a q element without any attributes.
Declaration
  
    public static Html q_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Raw(String)
  Render a string without HTML-encoding it first.
Declaration
  
    public static Html Raw(string rawHtml)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | rawHtml | The pre-encoded string | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  s(Attr[])
  
  
  Declaration
  
    public static TagBuilder s(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  s(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder s(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  s(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder s(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  s_(Html[])
  Build an s element without any attributes.
Declaration
  
    public static Html s_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  s_(IEnumerable<Html>)
  Build an s element without any attributes.
Declaration
  
    public static Html s_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  samp(Attr[])
  
  
  Declaration
  
    public static TagBuilder samp(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  samp(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder samp(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  samp(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder samp(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  samp_(Html[])
  Build a samp element without any attributes.
Declaration
  
    public static Html samp_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  samp_(IEnumerable<Html>)
  Build a samp element without any attributes.
Declaration
  
    public static Html samp_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  script(Attr[])
  
  
  Declaration
  
    public static TagBuilder script(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  script(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder script(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  script(String, String, String, String, String, String, String, String, String, Boolean)
  
  
  Declaration
  
    public static TagBuilder script(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null, string crossorigin = null, bool async = false)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  script_(Html[])
  Build a script element without any attributes.
Declaration
  
    public static Html script_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  script_(IEnumerable<Html>)
  Build a script element without any attributes.
Declaration
  
    public static Html script_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  section(Attr[])
  
  
  Declaration
  
    public static TagBuilder section(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  section(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder section(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  section(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder section(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  section_(Html[])
  Build a section element without any attributes.
Declaration
  
    public static Html section_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  section_(IEnumerable<Html>)
  Build a section element without any attributes.
Declaration
  
    public static Html section_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  select(Attr[])
  
  
  Declaration
  
    public static TagBuilder select(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  select(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder select(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  select(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, String)
  
  
  Declaration
  
    public static TagBuilder select(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string multiple = null, string size = null, bool autofocus = false, bool disabled = false, bool required = false, string form = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  select_(Html[])
  Build a select element without any attributes.
Declaration
  
    public static Html select_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  select_(IEnumerable<Html>)
  Build a select element without any attributes.
Declaration
  
    public static Html select_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SelfClosingTag(String, Attr[])
  Create a tag which does not take children.
Declaration
  
    public static Html SelfClosingTag(string name, params Attr[] attrs)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SelfClosingTag(String, IEnumerable<Attr>)
  Create a tag which does not take children.
Declaration
  
    public static Html SelfClosingTag(string name, IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  small(Attr[])
  
  
  Declaration
  
    public static TagBuilder small(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  small(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder small(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  small(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder small(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  small_(Html[])
  Build a small element without any attributes.
Declaration
  
    public static Html small_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  small_(IEnumerable<Html>)
  Build a small element without any attributes.
Declaration
  
    public static Html small_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  source(Attr[])
  
  
  Declaration
  
    public static Html source(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  source(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html source(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  source(String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html source(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  span(Attr[])
  
  
  Declaration
  
    public static TagBuilder span(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  span(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder span(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  span(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder span(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  span_(Html[])
  Build a span element without any attributes.
Declaration
  
    public static Html span_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  span_(IEnumerable<Html>)
  Build a span element without any attributes.
Declaration
  
    public static Html span_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  strong(Attr[])
  
  
  Declaration
  
    public static TagBuilder strong(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  strong(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder strong(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  strong(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder strong(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  strong_(Html[])
  Build a strong element without any attributes.
Declaration
  
    public static Html strong_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  strong_(IEnumerable<Html>)
  Build a strong element without any attributes.
Declaration
  
    public static Html strong_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  style(Attr[])
  
  
  Declaration
  
    public static TagBuilder style(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  style(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder style(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  style(String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder style(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string media = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  style_(Html[])
  Build a style element without any attributes.
Declaration
  
    public static Html style_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  style_(IEnumerable<Html>)
  Build a style element without any attributes.
Declaration
  
    public static Html style_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sub(Attr[])
  
  
  Declaration
  
    public static TagBuilder sub(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sub(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder sub(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sub(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder sub(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sub_(Html[])
  Build a sub element without any attributes.
Declaration
  
    public static Html sub_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sub_(IEnumerable<Html>)
  Build a sub element without any attributes.
Declaration
  
    public static Html sub_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  summary(Attr[])
  
  
  Declaration
  
    public static TagBuilder summary(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  summary(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder summary(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  summary(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder summary(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  summary_(Html[])
  Build a summary element without any attributes.
Declaration
  
    public static Html summary_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  summary_(IEnumerable<Html>)
  Build a summary element without any attributes.
Declaration
  
    public static Html summary_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sup(Attr[])
  
  
  Declaration
  
    public static TagBuilder sup(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sup(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder sup(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sup(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder sup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sup_(Html[])
  Build a sup element without any attributes.
Declaration
  
    public static Html sup_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  sup_(IEnumerable<Html>)
  Build a sup element without any attributes.
Declaration
  
    public static Html sup_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  table(Attr[])
  
  
  Declaration
  
    public static TagBuilder table(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  table(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder table(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  table(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder table(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  table_(Html[])
  Build a table element without any attributes.
Declaration
  
    public static Html table_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  table_(IEnumerable<Html>)
  Build a table element without any attributes.
Declaration
  
    public static Html table_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag(String, Attr[])
  Create a tag which takes children.
Declaration
  
    public static TagBuilder Tag(string name, params Attr[] attrs)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag(String, IEnumerable<Attr>)
  Create a tag which takes children.
Declaration
  
    public static TagBuilder Tag(string name, IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag_(String, Html[])
  Create a tag without any attributes.
Declaration
  
    public static Html Tag_(string name, params Html[] children)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag_(String, IEnumerable<Html>)
  Create a tag without any attributes.
Declaration
  
    public static Html Tag_(string name, IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag_(String, ImmutableArray<Html>)
  Create a tag without any attributes.
Declaration
  
    public static Html Tag_(string name, ImmutableArray<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | ImmutableArray<Html> | children |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag_(String, ImmutableList<Html>)
  Create a tag without any attributes.
Declaration
  
    public static Html Tag_(string name, ImmutableList<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | ImmutableList<Html> | children |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Tag_(String, List<Html>)
  Create a tag without any attributes.
Declaration
  
    public static Html Tag_(string name, List<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | name |  | 
      
        | List<Html> | children |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tbody(Attr[])
  
  
  Declaration
  
    public static TagBuilder tbody(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tbody(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder tbody(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tbody(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder tbody(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tbody_(Html[])
  Build a tbody element without any attributes.
Declaration
  
    public static Html tbody_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tbody_(IEnumerable<Html>)
  Build a tbody element without any attributes.
Declaration
  
    public static Html tbody_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  td(Attr[])
  
  
  Declaration
  
    public static TagBuilder td(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  td(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder td(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  td(String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder td(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string colspan = null, string rowspan = null, string headers = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  td_(Html[])
  Build a td element without any attributes.
Declaration
  
    public static Html td_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  td_(IEnumerable<Html>)
  Build a td element without any attributes.
Declaration
  
    public static Html td_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Text(String)
  Render HTML-encoded text.
Declaration
  
    public static Html Text(string text)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | text | The text to HTML-encode | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  textarea(Attr[])
  Build a textarea element.
Declaration
  
    public static TagBuilder textarea(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  textarea(IEnumerable<Attr>)
  Build a textarea element.
Declaration
  
    public static TagBuilder textarea(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  textarea(String, String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String, String, String, String)
  Build a textarea element.
Declaration
  
    public static TagBuilder textarea(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string placeholder = null, string autocomplete = null, string cols = null, string rows = null, string wrap = null, bool autofocus = false, bool disabled = false, bool readonly = false, bool required = false, string src = null, string maxlength = null, string minlength = null, string form = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  textarea_(Html[])
  Build a textarea element without any attributes.
Declaration
  
    public static Html textarea_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  textarea_(IEnumerable<Html>)
  Build a textarea element without any attributes.
Declaration
  
    public static Html textarea_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder tfoot(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder tfoot(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static TagBuilder tfoot(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a tfoot element without any attributes.
Declaration
  
    public static Html tfoot_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Build a tfoot element without any attributes.
Declaration
  
    public static Html tfoot_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  th(Attr[])
  
  
  Declaration
  
    public static TagBuilder th(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  th(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder th(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  th(String, String, String, String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder th(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string colspan = null, string rowspan = null, string headers = null, string scope = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  th_(Html[])
  Build a th element without any attributes.
Declaration
  
    public static Html th_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  th_(IEnumerable<Html>)
  Build a th element without any attributes.
Declaration
  
    public static Html th_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  thead(Attr[])
  
  
  Declaration
  
    public static TagBuilder thead(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  thead(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder thead(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  thead(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder thead(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  thead_(Html[])
  Build a thead element without any attributes.
Declaration
  
    public static Html thead_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  thead_(IEnumerable<Html>)
  Build a thead element without any attributes.
Declaration
  
    public static Html thead_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  time(Attr[])
  
  
  Declaration
  
    public static TagBuilder time(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  time(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder time(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  time(String, String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder time(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string datetime = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  time_(Html[])
  Build a time element without any attributes.
Declaration
  
    public static Html time_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  time_(IEnumerable<Html>)
  Build a time element without any attributes.
Declaration
  
    public static Html time_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  title(Attr[])
  
  
  Declaration
  
    public static TagBuilder title(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  title(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder title(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  title(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder title(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  title_(Html[])
  Build a title element without any attributes.
Declaration
  
    public static Html title_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  title_(IEnumerable<Html>)
  Build a title element without any attributes.
Declaration
  
    public static Html title_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToString()
  
  
  Declaration
  
    public override string ToString()
   
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tr(Attr[])
  
  
  Declaration
  
    public static TagBuilder tr(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tr(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder tr(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tr(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder tr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tr_(Html[])
  Build a tr element without any attributes.
Declaration
  
    public static Html tr_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  tr_(IEnumerable<Html>)
  Build a tr element without any attributes.
Declaration
  
    public static Html tr_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  track(Attr[])
  
  
  Declaration
  
    public static Html track(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  track(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html track(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  track(String, String, String, String, String, String, String, String, String, Boolean)
  
  
  Declaration
  
    public static Html track(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string label = null, string kind = null, bool default = false)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  u(Attr[])
  
  
  Declaration
  
    public static TagBuilder u(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  u(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder u(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  u(String, String, String, String, String, String)
  
  
  Declaration
  
    public static TagBuilder u(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  u_(Html[])
  Build an u element without any attributes.
Declaration
  
    public static Html u_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  u_(IEnumerable<Html>)
  Build an u element without any attributes.
Declaration
  
    public static Html u_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ul(Attr[])
  
  
  Declaration
  
    public static TagBuilder ul(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ul(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder ul(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ul(String, String, String, String, String, String, String, Boolean, String)
  
  
  Declaration
  
    public static TagBuilder ul(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, bool reversed = false, string start = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ul_(Html[])
  Build an ul element without any attributes.
Declaration
  
    public static Html ul_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ul_(IEnumerable<Html>)
  Build an ul element without any attributes.
Declaration
  
    public static Html ul_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  video(Attr[])
  
  
  Declaration
  
    public static TagBuilder video(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  video(IEnumerable<Attr>)
  
  
  Declaration
  
    public static TagBuilder video(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  video(String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String)
  
  
  Declaration
  
    public static TagBuilder video(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string height = null, string width = null, string poster = null, string preload = null, bool autoplay = false, bool loop = false, bool muted = false, bool controls = false, string crossorigin = null)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  video_(Html[])
  Build a video element without any attributes.
Declaration
  
    public static Html video_(params Html[] children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  video_(IEnumerable<Html>)
  Build a video element without any attributes.
Declaration
  
    public static Html video_(IEnumerable<Html> children)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Html> | children |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  wbr(Attr[])
  
  
  Declaration
  
    public static Html wbr(params Attr[] attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Attr[] | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  wbr(IEnumerable<Attr>)
  
  
  Declaration
  
    public static Html wbr(IEnumerable<Attr> attrs)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | IEnumerable<Attr> | attrs |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  wbr(String, String, String, String, String, String)
  
  
  Declaration
  
    public static Html wbr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | The element | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Write(TextWriter)
  
  
  Declaration
  
    public void Write(TextWriter writer)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | TextWriter | writer | The writer | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Write(TextWriter, HtmlEncoder)
  Write the HTML to a , using an  to encode input text
Declaration
  
    public void Write(TextWriter writer, HtmlEncoder htmlEncoder)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | TextWriter | writer | The writer | 
      
        | HtmlEncoder | htmlEncoder | The HTML encoder | 
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  WriteAsync(TextWriter)
  
  
  Declaration
  
    public Task WriteAsync(TextWriter writer)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | TextWriter | writer | The writer | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  WriteAsync(TextWriter, HtmlEncoder)
  Write the HTML to a , using an  to encode input text
Declaration
  
    public Task WriteAsync(TextWriter writer, HtmlEncoder htmlEncoder)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | TextWriter | writer | The writer | 
      
        | HtmlEncoder | htmlEncoder | The HTML encoder | 
    
  
  Returns
  
  Operators
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(Html[] to Html)
  Put some siblings next to each other.
Declaration
  
    public static implicit operator Html(Html[] siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Html[] | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(TagBuilder to Html)
  Create a tag with no children.
Declaration
  
    public static implicit operator Html(TagBuilder tagBuilder)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(ImmutableArray<Html> to Html)
  Put some siblings next to each other.
Declaration
  
    public static implicit operator Html(ImmutableArray<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | ImmutableArray<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(ImmutableList<Html> to Html)
  Put some siblings next to each other.
Declaration
  
    public static implicit operator Html(ImmutableList<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | ImmutableList<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(List<Html> to Html)
  Put some siblings next to each other.
Declaration
  
    public static implicit operator Html(List<Html> siblings)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | List<Html> | siblings |  | 
    
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Implicit(String to Html)
  Render HTML-encoded text.
Declaration
  
    public static implicit operator Html(string text)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | text | The text to HTML-encode | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | Html | An instance of Html. | 
    
  
  Extension Methods