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