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