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