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