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