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