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