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