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