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