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