Use on the webTotal Use [ 6075 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/25cd50aaae6f312d79e6bf887a97ee94?family=NoyhGeometricSlim-LightItalic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/25cd50aaae6f312d79e6bf887a97ee94?family=NoyhGeometricSlim-LightItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "NoyhGeometricSlim-LightItalic";
src: url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.eot");
src: url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/25cd50aaae6f312d79e6bf887a97ee94.svg#NoyhGeometricSlim-LightItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "NoyhGeometricSlim-LightItalic";