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