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