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