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