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