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