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