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