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