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