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