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