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