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