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