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