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