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