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