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