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