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