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