HtmlAddressElement
The address HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlAddressElement : HtmlElement
{
public HtmlAddressElement(Document owner, string prefix = null)
: base(owner, TagNames.Address, prefix, NodeFlags.Special)
{
}
}
}