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