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