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