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