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