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