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