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