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