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