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