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