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