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