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