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