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