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