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