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