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