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