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