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