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