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