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