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