HtmlBigElement
The big HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlBigElement : HtmlElement
{
public HtmlBigElement(Document owner, string prefix = null)
: base(owner, TagNames.Big, prefix, NodeFlags.HtmlFormatting)
{
}
}
}