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