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