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