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