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