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