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