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