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