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