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