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