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