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