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