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