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