HtmlFontElement
Represents a font element.
See (19) obsolete features of [WHATWG].
using AngleSharp.Attributes;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
[DomHistorical]
internal sealed class HtmlFontElement : HtmlElement
{
public HtmlFontElement(Document owner, string prefix = null)
: base(owner, Tags.Font, prefix, NodeFlags.HtmlFormatting)
{
}
}
}