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