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