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