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