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