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