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