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