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