Use on the webTotal Use [ 5358 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b6dd537259ef25faed9ca78b80a584c4?family=Non+Ophelie+Display+Italic+Trial+Thin" 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/b6dd537259ef25faed9ca78b80a584c4?family=Non+Ophelie+Display+Italic+Trial+Thin);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Non Ophelie Display Italic Trial Thin";
src: url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.eot");
src: url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b6dd537259ef25faed9ca78b80a584c4.svg#Non Ophelie Display Italic Trial Thin")format("svg");
}
2CSS rules to specify fonts
font-family: "Non Ophelie Display Italic Trial Thin";