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