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