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