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