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