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