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