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