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