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