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