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