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