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