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