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