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