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