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