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