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