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