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