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