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