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