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