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