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