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