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