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