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