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