AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.5" />

.NET API 1,113,600 bytes

 ICssFontFaceRule

public interface ICssFontFaceRule : ICssRule
Represents a @font-face CSS rule.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Css { [DomName("CSSFontFaceRule")] public interface ICssFontFaceRule : ICssRule { [DomName("family")] string Family { get; set; } [DomName("src")] string Source { get; set; } [DomName("style")] string Style { get; set; } [DomName("weight")] string Weight { get; set; } [DomName("stretch")] string Stretch { get; set; } [DomName("unicodeRange")] string Range { get; set; } [DomName("variant")] string Variant { get; set; } [DomName("featureSettings")] string Features { get; set; } } }