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