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