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