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