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