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