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