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