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