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