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