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