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