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