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