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