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