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