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