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