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