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