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